有没有办法在给定分区键的情况下轻松计算令牌?
Is there a way to easily calculate the token given a partition key?
我有一个 UUID 分区键,我想为其计算其令牌。这可以轻松完成吗?我知道有 nodetool getendpoints
和 nodetool getsstables
,但我还没有找到 nodetool
实用程序。
假设您的分区键是 partition
、
执行SELECT token(yourColumn) FROM keyspace.table WHERE yourColumn ='partition' LIMIT 1
您将获得分区键的令牌值。
我有一个 UUID 分区键,我想为其计算其令牌。这可以轻松完成吗?我知道有 nodetool getendpoints
和 nodetool getsstables
,但我还没有找到 nodetool
实用程序。
假设您的分区键是 partition
、
执行SELECT token(yourColumn) FROM keyspace.table WHERE yourColumn ='partition' LIMIT 1
您将获得分区键的令牌值。