16.17Connection pools
Opening a brand-new network connection for every request is expensive.
Connectors generally manage reusable connections/pools depending on their implementation/configuration.
Conceptually:
Mule
↓
connection pool
[connection]
[connection]
[connection]
[connection]
↓
Database/API
Problems can happen when:
all connections busy
and requests wait for one.