我正在使用 Datastax python 驱动程序版本:3.23
Cassandra 版本:DSE 版本 5.1.16
cqlsh 的输出如下:
[cqlsh 5.0.1 | Cassandra 3.11.3.5116 | DSE 5.1.16 | CQL spec 3.4.4 | Nativeprotocol v4]
cluster = Cluster(['X.X.X.X'],port=9042,auth_provider=provider,protocol_version=4)
max_requests = cluster.get_max_requests_per_connection(0)
max_connections = cluster.get_max_connections_per_host(0)
print(max_connections)
print(max_requests)
输出:-
8 100
根据 DataStax 文档max_request_per_host in v4
,应该是 32,786。
不确定问题出在哪里。