cassandra node limitations

前端 未结 5 1592
予麋鹿
予麋鹿 2021-02-08 02:58

I am looking for if cassandra has limitations of node hardware spec like what could be the max storage per node if there is any such limitation.

I intend to use couple o

5条回答
  •  不知归路
    2021-02-08 03:27

    You should also be careful using large amounts of RAM with Cassandra. RAM is great for caching the data in SSTables, but giving the JVM too much heap space is counter-productive. Don't give the JVM much more than 12 GB of heap space, otherwise garbage collection will take too long and hinder performance. This is another reason why having more smaller nodes is better in Cassandra.

提交回复
热议问题