我可以使用什么 cqlsh 命令来快速查看集群中的键空间?cqlsh 没有提供show keyspaces
,describe cluster
也没有我想要的那么简洁。
我正在使用以下规格:
cqlsh 2.2.0、Cassandra 1.1.10、CQL 规范 2.0.0、Thrift 协议 19.33.0
很简单。只需在您的 cqlsh shell 中输入此命令即可享受
select * from system.schema_keyspaces;
在 C*3.x 中,我们可以简单地使用
describe keyspaces
cqlsh> select * from system_schema.keyspaces;
keyspace_name | durable_writes | replication
--------------------+----------------+-------------------------------------------------------------------------------------
system_auth | True | {'class': 'org.apache.cassandra.locator.SimpleStrategy', 'replication_factor': '1'}
system_schema | True | {'class': 'org.apache.cassandra.locator.LocalStrategy'}
system_distributed | True | {'class': 'org.apache.cassandra.locator.SimpleStrategy', 'replication_factor': '3'}
system | True | {'class': 'org.apache.cassandra.locator.LocalStrategy'}
system_traces | True | {'class': 'org.apache.cassandra.locator.SimpleStrategy', 'replication_factor': '2'}
C* 3.x 系列的正确方法是:
List<KeyspaceMetadata> keyspaces = Cluster.getMetadata().getKeyspaces()
然后getName()
在 KeyspaceMetadata 实例上使用。