All Apps and Add-ons

DB Connection Limit

Sammich
New Member

Does anyone know if there is a maximum number of db connections that the Java Bridge Server can support? I know in the java.conf file you can set the pool.maxActive to specify the maximum number of active database connections, but is there a limit to this?

Tags (1)
0 Karma
1 Solution

ziegfried
Influencer

The limit highly depends on the environment. Both the type operating system and especially the limit on max. open file descriptors and hardware such as available memory will be a limiting factor. The database server might limit the number of connections per host or user as well.

In general pool.maxActive count being higher than the number of available threads will not have any effect since DB Connect will only use/open 1 connection per thread. There are 2 thread-pools for DB Connect:

  • bridge: 10 threads for commands (ie. dbquery, dbinfo, dboutput)
  • dbmon: 5 threads for database inputs

These thread-pool sizes can be configured in java.conf. For example:

[bridge]
threads = 20

[dbmon]
threads = 50

[dbx]
pool.maxActive = 70

This would give a total of 70 available threads, so setting the max. size of the connection pool to 70 is a reasonable choice.

View solution in original post

ziegfried
Influencer

The limit highly depends on the environment. Both the type operating system and especially the limit on max. open file descriptors and hardware such as available memory will be a limiting factor. The database server might limit the number of connections per host or user as well.

In general pool.maxActive count being higher than the number of available threads will not have any effect since DB Connect will only use/open 1 connection per thread. There are 2 thread-pools for DB Connect:

  • bridge: 10 threads for commands (ie. dbquery, dbinfo, dboutput)
  • dbmon: 5 threads for database inputs

These thread-pool sizes can be configured in java.conf. For example:

[bridge]
threads = 20

[dbmon]
threads = 50

[dbx]
pool.maxActive = 70

This would give a total of 70 available threads, so setting the max. size of the connection pool to 70 is a reasonable choice.

Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...