Tip
When making requests to the Bot API in an asynchronous fashion (e.g. via
block=False
, Application.create_task
,
concurrent_updates()
or the JobQueue
), it can happen that more requests
are being made in parallel than there are connections in the pool.
If the number of requests is much higher than the number of connections, even setting
pool_timeout()
to a larger value may not always be enough to prevent pool
timeouts.
You should therefore set concurrent_updates()
, connection_pool_size()
and
pool_timeout()
to values that make sense for your setup.