cassandracassandra-3.0datamodel

How do I calculate the size of a Cassandra Partition?


CREATE TABLE IF NOT EXISTS video (key int, value int, PRIMARY KEY (key, value));

Here Partition Key is key and Clustering Key is value. No regular columns. Assume, there are 1000000 rows in this partition.

What is the size of the partition?


Solution

  • To calculate the partition size, you need the following data points:

    In your case:

    So for 1M rows:

    partition size = 4B + 0B + (4B x 1,000,000 cells) + (8B x 1,000,000,000 rows)
                   = 12,000,004 bytes
                   = 11.44 MB
    

    Cheers!