Reputation: 1449
I see info here on collection size limits in cassandra, but it includes this note: "The limits specified for collections are for non-frozen collections." I can't find limits on frozen collections defined anywhere.
Upvotes: 2
Views: 405
Reputation: 2101
Frozen collections are treated as blobs so there is no imposed limit on them (other than the overall size that you would want to have in partitions etc).
Frozen collections are useful if you want to use them in the primary key. Frozen collection can only be replaced as a whole, you cannot for example add/remove elements in a frozen collection.
Upvotes: 3