来自 Cassandra DB 的随机数据

发布于 2024-10-30 20:34:09 字数 128 浏览 1 评论 0原文

我正在使用随机分区器,我想知道是否有一种方法可以进行相当于范围扫描的操作来获取一批随机行。我假设这些行是相当随机地放置在整个集群的磁盘上的?

换句话说,给定随机分区中的行键,是否有办法获得该行的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘虞初梦 2024-11-06 20:34:09

您可以通过请求一个有限制的开放式切片来做到这一点。

使用 cassandra-cli,columnFamily 为“Test”,您可以执行以下命令:

list Test['key':] limit 10;

请注意 ['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:

list Test['key':] limit 10;

Note that ['key':] and [:'key'] return the same results.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文