嗨,我在 python 中使用 cassandra。我在 cassandra 中有一个表,其中 line_id (uuid) 作为它的主键。我有大约 2000000 条记录(每个分区有一条记录)。当我想获取记录数时:
NumberPartitionedLine.objects.count()
我收到此错误:
Error from server: code=1200 [Coordinator node timed out waiting for replica nodes' responses] message="Operation timed out - received only 0 responses." info={'consistency': 'LOCAL_ONE', 'received_responses': 0, 'required_responses': 1}
select count(*) from number_partitioned_line
同样,当我在razorsql或datagrip中运行查询时,出现超时错误并且无法获得结果。什么原因?