Maximum number of synchronous connections allowed per server node. Transactions 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.
This field is ignored by asynchronous transactions since these transactions are already bound by asyncMaxCommands by default. Each async command has a one-to-one relationship with connections.
Default: 300
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public int maxConnsPerNode
Field Value
Type: Int32See Also