来自 Cassandra DB 的随机数据
我正在使用随机分区器,我想知道是否有一种方法可以进行相当于范围扫描的操作来获取一批随机行。我假设这些行是相当随机地放置在整个集群的磁盘上的?
换句话说,给定随机分区中的行键,是否有办法获得该行的 X 个邻居作为数据的随机样本?
I'm using the Random Partitioner, and I'm wondering if there's a way to do the equivalent of a range scan to get a batch of random rows. I assume that the rows are rather randomly placed on disk across the cluster?
In other words, given a row key in a random partition, is there a way to get X number of neighbors to that row as a random sample of data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过请求一个有限制的开放式切片来做到这一点。
使用 cassandra-cli,columnFamily 为“Test”,您可以执行以下命令:
请注意
['key':]
和[:'key']
返回相同的结果。You may be able to do this by requesting an open-ended slice with a limit.
Using cassandra-cli, with a columnFamily of 'Test', you can do commands such as:
Note that
['key':]
and[:'key']
return the same results.