0 votes
in Cassandra by
What are partitions and Tokens in Cassandra?

1 Answer

0 votes
by

Partition: It is a hash function located on each node which hashes tokens from designated values in rows being added. It converts a variable length input to a fixed length value.

Token: Integer value generated by a hashing algorithm, identifying a partition’s location within a cluster

...