Cassandra-stress
工具将数据插入默认键空间Keyspace1
。如何插入特定的键空间?
谢谢史密莎
cassandra 2.1 的最新压力工具允许您创建自己的模式,甚至附带 3 个示例模式,其中一个名为cqlstress-example.yaml
. 它们可以在C*-dir/tools/
.
您可以按如下方式发出压力命令:
./bin/cassandra-stress user profile=./cqlstress-example.yaml ops\(insert=1\)
该博客介绍了使用该工具进行的自定义压力。
最新的 cassandra-stress 工具提供了 -schema 选项,您可以使用它来指定自己的键空间/模式。例如
cassandra-stress 读取 n=200000 -schema keyspace="myOwnKeyspace"