如何列出 riak 中所有的桶类型?
How to list all the bucket types in riak?
使用 Riak Client(erlang),我可以列出所有默认桶类型的桶。但是我怎样才能列出所有的桶类型呢?或者如果我不能由客户做这件事,我怎么能知道这件事?
对于 v2.1.4,riak-admin bucket-type list
就是您要查找的内容。
riak-admin bucket-type
的其他子命令(取自较早版本的 riak 文档)包括:
Command Action Form
create create or modify a bucket type create <type> <json>
before activation
activate activate a bucket type activate <type>
list list all currently available bucket
types and their activation status list
status display the status and properties status <type>
of a specific bucket type
update update a bucket type after activation update <type> <json>
使用 Riak Client(erlang),我可以列出所有默认桶类型的桶。但是我怎样才能列出所有的桶类型呢?或者如果我不能由客户做这件事,我怎么能知道这件事?
对于 v2.1.4,riak-admin bucket-type list
就是您要查找的内容。
riak-admin bucket-type
的其他子命令(取自较早版本的 riak 文档)包括:
Command Action Form
create create or modify a bucket type create <type> <json>
before activation
activate activate a bucket type activate <type>
list list all currently available bucket
types and their activation status list
status display the status and properties status <type>
of a specific bucket type
update update a bucket type after activation update <type> <json>