Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我正在使用 Astyanax 客户端在我的程序中使用 CQL 访问 Cassandra。我遇到的问题是,当我执行查询时,OperationResult 的行数设置为最大 10 000。我需要根据需要增加此限制。将 CQL 与 Astyanax 一起使用时无法进行分页。如果有人能指出我正确的方向,那将非常有帮助。提前致谢
Astyanax 在使用 CQL 时不限制返回的行数。您可能需要检查您的 Cassandra 配置。我会警告说,返回太多行可能会导致客户端级别的其他问题,例如内存不足。
干杯
在查询中,默认限制为 10000,您需要在查询中指定限制。
http://www.datastax.com/docs/1.0/references/cql/SELECT
有答案