Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Windows 上运行 ycsb 时,我无法使用 ycsb 在 cassandra 中加载和运行我的数据。我用命令
python ycsb load cassandra-10 -P C:\Users\Faria\Desktop\Test\YCSB\workloads\workloada -s > load.log
但是没有加载数据。请给我解决方案
在此命令中,您缺少要插入的记录计数属性和主机属性。还有一件事是端口号。默认情况下,cassandra 连接到 9160 端口号。
您可以尝试使用以下命令
ycsb load cassandra-10 -p hosts="<ip address of the machine>" -p port=9160 -p recordcount=1000000 -P <path of the workload> -s