The Cassandra command-line utility sstablekeys
can be used to extract all defined row keys from a physical SSTABLE file:
sstablekeys .../cassandra/data/Keyspace1/Standard1-N-Data.db
Does the Cassandra API support retrieval of all defined keys? If so, how?
I'm looking for the Cassandra analogy to SELECT id FROM table;
.