LDAP system properties for DataStax Enterprise Authentication
Change LDAP system properties.
- -Ddse.ldap.connection.timeout.ms
- The number of milliseconds before the connection
timesout.
Default:
- -Ddse.ldap.retry_interval.ms
- Allows you to set the time in milliseconds between subsequent retries when
authenticating via an LDAP server.
Default:
10
- -Ddse.ldap.pool.min.idle
- Finer control over the connection pool for DataStax Enterprise LDAP authentication
connector. The min idle settings determines the minimum number of connections allowed
in the pool before the evictor thread will create new connections. This setting has no
effect if the evictor thread isn't configured to run.
Default:
- -Ddse.ldap.pool.exhausted.action
- Determines what the pool does when it is full. It can be one of:
fail
- the pool with throw an exceptionblock
- the pool will block for max wait ms (default)grow
- the pool will just keep growing (not recommended)
Default:
block
- -Ddse.ldap.pool.max.wait
- When the
dse.ldap.pool.exhausted.action
isblock
, sets the number of milliseconds to block the pool before throwing an exception.Default:
- -Ddse.ldap.pool.test.borrow
- Tests a connection when it is borrowed from the pool.
Default:
- -Ddse.ldap.pool.test.return
- Tests a connection returned to the pool.
Default:
- -Ddse.ldap.pool.test.idle
- Tests any connections in the eviction loop that are not being evicted. Only works if
the time between eviction runs is greater than 0ms.
Default:
- -Ddse.ldap.pool.time.between.evictions
- Determines the time in ms (milliseconds) between eviction runs. When run with the
dse.ldap.pool.test.idle
this becomes a basic keep alive for connections.Default:
- -Ddse.ldap.pool.num.tests.per.eviction
- Number of connections in the pool that are tested each connection run. If this is
set the same as max active (the pool size) then all connections will be tested each
eviction run.
Default:
- -Ddse.ldap.pool.min.evictable.idle.time.ms
- Determines the minimum time in ms (milliseconds) that a connection can sit in the
pool before it becomes available for eviction.
Default:
- -Ddse.ldap.pool.soft.min.evictable.idle.time.ms
- Determines the minimum time in ms (milliseconds) that a connection can sit the pool
before it becomes available for eviction with the proviso that the number of
connections doesn't fall below
dse.ldap.pool.min.evictable.idle.time.ms
.Default: