对于Cassandra 3.0,删除了名为“cassandra-cli”的实用程序。它允许查看表的内部存储方式。像这里:
RowKey: title1
=> (name=, value=, timestamp=1393102991499000)
=> (name=author, value=Some Author, timestamp=1393102991499000)
=> (name=year, value=1993, timestamp=1393102991499000)
RowKey: title2
=> (name=, value=, timestamp=1393102991499100)
=> (name=author, value=Another Author, timestamp=1393102991499100)
=> (name=year, value=1987, timestamp=1393102991499100)
如何在Cassandra中执行此操作> = 3.0?
答案 0 :(得分:2)
对于Cassandra 3.0,他们更改了sstable格式,并没有更新用于调试内容的工具,因此删除了这些工具。请参阅CASSANDRA-7464。
如果您阅读了评论,看起来有些人正在为3.x开发sstable2json的更新版本。