arangodb / arangodb-java-driver

The official ArangoDB Java driver.
Apache License 2.0
201 stars 93 forks source link

[question] maxConnections parameter for 7.x.x arango client greater than 1 #531

Closed metroniko closed 8 months ago

metroniko commented 9 months ago

Hi everyone According to the documentation https://docs.arangodb.com/3.11/develop/drivers/java/reference-version-7/driver-setup/, 7.x.x arango driver has maxConnections value 1 for HTTP2_JSON protocol

Please tell me, what the behavior will be if the maxConnections property is set to a value greater than 1?

Does maxConnections affect performance in the case of HTTP2_JSON protocol?

rashtao commented 9 months ago

Thanks to HTTP/2 multiplexing, 1 connection should already offer good performances. In case it's needed, this value can be overridden explicitly configuring it with the desired number of max connections.

rashtao commented 8 months ago

Closing as inactive, please reopen if still relevant.