0

我正在尝试使用官方 python 驱动程序运行 cqlsh 查询:

>>> session.execute('select count(*) from cassandra_table')

我收到以下错误:

ReadTimeout: Error from server: code=1200 [Coordinator node timed out waiting for replica nodes' responses] message="Operation timed out - received only 0 responses." info={'received_responses': 0, 'required_responses': 1, 'consistency': 'LOCAL_ONE'}

我试图增加读取超时

尝试#1:

>>> session.default_timeout = 60.0
>>> session.execute('select count(*) from cassandra_table')

尝试#2:

>>> session.execute('select count(*) from cassandra_table', timeout=60.0)

两种方式都给了我相同的读取时间错误如何正确增加读取超时?

版本信息:

Cassandra   3.11.0.1900
Spark   2.0.2.6-de611f9
DSE               5.1.5
cassandra-driver 3.12.0
4

1 回答 1

0

在 cassandracount(*)中是一项非常昂贵的操作,需要读取所有节点上的所有数据。鉴于它很容易count(*)适用于少量数据,但不适用于可能有行的情况。

DataStax 还有一篇关于计数的博客文章:https ://www.datastax.com/dev/blog/counting-keys-in-cassandra

于 2018-01-05T11:48:58.650 回答