What cqlsh command can I use to quickly see the keyspaces in a cluster? cqlsh does not provide show keyspaces and describe cluster isn\'t as concis
show keyspaces
describe cluster
The correct way with C* 3.x series is:
List keyspaces = Cluster.getMetadata().getKeyspaces()
Then use getName() on the KeyspaceMetadata instances.
getName()