Hi all, By default in "JDBC Connection Configuration", the value of "Max Number of Connections" is 10
If we check the documentation we have: Maximum number of connections allowed in the pool. In most cases, set this to zero (0). This means that each thread will get its own pool with a single connection in it, i.e. the connections are not shared between threads. If you really want to use shared pooling (why?), then set the max count to the same as the number of threads to ensure threads don't wait on each other. In particularity "If you really want to use shared pooling (*why?*)" Why not to set the value to 0 by default? Cdlt, Antonio
