Cassandra-stress
工具将数据插入默认密钥空间Keyspace1
。如何插入特定的键空间?
由于 Smitha
答案 0 :(得分:4)
cassandra 2.1的最新压力工具允许您创建自己的模式,甚至还带有3个示例模式,其中一个模式称为cqlstress-example.yaml
。它们可以在C*-dir/tools/
中找到。
您可以按如下方式发出压力命令:
./bin/cassandra-stress user profile=./cqlstress-example.yaml ops\(insert=1\)
This blog涵盖了使用该工具的自定义压力。
答案 1 :(得分:2)
最新的cassandra-stress工具提供了-schema选项,您可以使用它来指定自己的键空间/架构。 E.g。
cassandra-stress read n = 200000 -schema keyspace =" myOwnKeyspace"