Reputation: 1290
Is there any limit on maximum length we can specify for a column while creating Cassandra table, if yes, then how much we can specify?
I am new to using Cassandra, please let me know
Upvotes: 11
Views: 14693
Reputation: 819
The maximum number of cells (rows x columns) in a single partition is 2 billion and the maximum column key (and row key) size is 64KB and the maximum column value size is 2 GB. you can refer this https://cwiki.apache.org/confluence/display/CASSANDRA2/CassandraLimitations
Upvotes: 9