对于 Datastax NodeJS Cassandra Driver 3.5,默认的 ReconnectionPolicy 是什么?
For Datastax NodeJS Cassandra Driver 3.5, what is the default ReconnectionPolicy?
我们使用 Apache Cassandra 3.11.2 和 Node.js,使用 Datastax NodeJS 驱动程序 3.5。不幸的是,文档通常没有帮助。我无法从目前阅读的所有内容中看出,如果您不指定,默认的 ReconnectionPolicy 是什么?
默认重新连接策略是ExponentialReconnectionPolicy
,基本延迟为 1 秒,最大延迟为 600 秒...defined in the same file as other default policies...
我们使用 Apache Cassandra 3.11.2 和 Node.js,使用 Datastax NodeJS 驱动程序 3.5。不幸的是,文档通常没有帮助。我无法从目前阅读的所有内容中看出,如果您不指定,默认的 ReconnectionPolicy 是什么?
默认重新连接策略是ExponentialReconnectionPolicy
,基本延迟为 1 秒,最大延迟为 600 秒...defined in the same file as other default policies...