I want to start a cassandra cluster (eg. 3 nodes), and my application has only one column family.
After reading documentation, I understood how cassandra replicates one column family across multiple nodes.
For eg. every node has 2Tb drive space and column family is replicated on every node so every node contains a full copy of it.
What happens if after some years that column family will exceed 2Tb and I do not have posibility to increase drive space?
If I will add more 10 nodes, I want that column family to be splitted into parts and stored on different drives on nodes, so it can increase to infinite size. If I understood correctly, a column family is limited to the smallest drive space in the cluster?