GumpacG commented on code in PR #3466: URL: https://github.com/apache/tinkerpop/pull/3466#discussion_r3463320930
########## docs/src/reference/gremlin-variants.asciidoc: ########## @@ -991,24 +991,27 @@ The following table describes the various configuration options for the Gremlin |auth.password |The password to submit on requests that require basic authentication. |_none_ |auth.region |The region setting for sigv4 authentication. |_none_ |auth.serviceName |The service name setting for sigv4 authentication. |_none_ -|connectionPool.connectionSetupTimeoutMillis | Duration of time in milliseconds provided for connection setup to complete which includes the SSL handshake. |15000 +|connectionPool.compression |The wire compression algorithm negotiated with the server. Can be: `NONE` or `DEFLATE`. |DEFLATE +|connectionPool.connectTimeout | Duration of time in milliseconds that bounds TCP connection establishment (transport setup, including the SSL handshake). Formerly `connectionSetupTimeoutMillis`, which is still accepted as a deprecated alias. |5000 |connectionPool.enableSsl |Determines if SSL should be enabled or not. If enabled on the server then it must be enabled on the client. |false -|connectionPool.idleConnectionTimeout | Duration of time in milliseconds that the driver will allow a channel to not receive read or writes before it automatically closes. |180000 +|connectionPool.idleTimeout | Duration of time in milliseconds that the driver will allow a channel to not receive read or writes before it automatically closes. Formerly `idleConnectionTimeoutMillis`, which is still accepted as a deprecated alias. |180000 +|connectionPool.keepAliveTime | Idle time in milliseconds before TCP keep-alive probes begin on an otherwise idle connection. Enables `SO_KEEPALIVE` on the socket and, where supported (JDK 11+ on Linux/macOS via `TCP_KEEPIDLE`), sets the per-socket idle time. Set to `0` to disable. |30000 |connectionPool.keyStore |The private key in JKS or PKCS#12 format. |_none_ |connectionPool.keyStorePassword |The password of the `keyStore` if it is password-protected. |_none_ |connectionPool.keyStoreType |`PKCS12` |_none_ -|connectionPool.maxResponseContentLength |The maximum length in bytes that a message can be received from the server. |2147483647 -|connectionPool.maxSize |The maximum size of a connection pool for a host. |128 -|connectionPool.maxWaitForConnection |The amount of time in milliseconds to wait for a new connection before timing out. |3000 +|connectionPool.maxConnections |The maximum size of a connection pool for a host. Formerly `maxConnectionPoolSize`, which is still accepted as a deprecated alias. |128 +|connectionPool.maxResponseHeaderBytes |The maximum size in bytes allowed for the HTTP response headers. |8192 +|connectionPool.maxWaitForConnection |The amount of time in milliseconds to wait for a new connection before timing out. |16000 |connectionPool.maxWaitForClose |The amount of time in milliseconds to wait for pending messages to be returned from the server before closing the connection. |3000 |connectionPool.reconnectInterval |The amount of time in milliseconds to wait before trying to reconnect to a dead host. |1000 -|connectionPool.resultIterationBatchSize |The override value for the size of the result batches to be returned from the server. |64 +|connectionPool.defaultBatchSize |The default value for the per-request batch size used when a request does not specify one. Formerly `resultIterationBatchSize`, which is still accepted as a deprecated alias. |64 Review Comment: Changed to just be `batchSize` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
