1

We have a cassandra development environment with 3 nodes cluster and each node with i3 processor and 8G memory. As we have keep increasing the number of keyspaces (i.e the nature of our application), at one point the performance of cassandra got slowed down (it was working fine with < 30 keyspaces).

What is the exact problem behind this?


Cassandra version - 2.0.6, phpcassa


Pious Deepak
  • 181
  • 1
  • 6

1 Answers1

0

Cassandra allocates resources (e.g. memtables) for each column family. Having 1250 CFs is well above the rule-of-thumb limit of 100. You need to design your data model to have fewer column families.

Richard
  • 11,050
  • 2
  • 46
  • 33