使用python cassandra驱动程序在cassandra中写入超时错误

6tqwzwtp  于 2021-06-15  发布在  Cassandra
关注(0)|答案(0)|浏览(219)

我有一个单节点集群,当我执行以下查询时,我得到以下错误,

DELETE FROM issuetable WHERE "partitionId"='1';

**

错误:

**:

WriteTimeout: Error from server: code=1100 [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': 'QUORUM'}

根据税务文件(https://datastax.github.io/python-driver/api/cassandra.html),他们提到增加 write_request_timeout_in_mscassandra.yaml 问题:
1) 为什么我会犯这个错误?按照我的table( issuetable )我在那个分区下只有84个条目。
2) 这应该在客户端还是服务器端解决?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题