user3581199
user3581199

Reputation: 359

Actual Storage Load of a Cassandra node

Is there any way to get the actual data size stored on a node? The nodetool outputs afaik only the compressed data size. Thx!

Upvotes: 1

Views: 442

Answers (1)

Aaron
Aaron

Reputation: 57748

Have you tried using nodetool cfstats <keyspace>? That should break it down on a per column family basis (for each column family in the specified keyspace). And it should give you more detail on space usage.

aploetz@ubuntu:/var/lib/cassandra/data$ nodetool cfstats products
Keyspace: products
    Read Count: 3515
    Read Latency: 0.4077462304409673 ms.
    Write Count: 5434
    Write Latency: 0.04547313213102686 ms.
    Pending Tasks: 0
            Table: itemmaster
            SSTable count: 3
            Space used (live), bytes: 1156013
            Space used (total), bytes: 1266953
            SSTable Compression Ratio: 0.2963641232834859
            ...

Upvotes: 1

Related Questions