How to Increase Transaction per second(TPS) in cassandra by using DataStax java Driver

十年热恋 提交于 2019-12-02 09:35:15

By TPS you mean Ligthweight Transaction Per Second or just Operation per second .

If it is Operation Per Second .

Figure out whats your Network bandwidth Speed of your Disk Number of cores on your machine

run queries and at run time figure out what is the bottleneck , commmands to figure out bottleneck are * network: dstat 2

  • cpu + disk: iostat -c -xc 3
  • cpu cores: mpstat -P ALL 1
  • memeory : free -m
  • gc : jstat -gc pid 2

  • do remember either of this bottleneck can be their at server or your client side .

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!