ClientPolicy.maxConnsPerNode Field

Maximum number of synchronous connections allowed per server node. Commands will go through retry logic and potentially fail with "ResultCode.NO_MORE_CONNECTIONS" if the maximum number of connections would be exceeded.

The number of connections used per node depends on how many concurrent threads issue database commands plus sub-threads used for parallel multi-node commands (batch, scan, and query). One connection will be used for each thread.

See asyncMaxConnsPerNode to configure max connections for asynchronous commands.

Default: 100

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
C#
public int maxConnsPerNode

Field Value

Int32

See Also