mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 19:45:11 +00:00
20 lines
554 B
C++
20 lines
554 B
C++
#include <mutex>
|
|
#include <Poco/ThreadPool.h>
|
|
#include <Poco/Ext/SessionPoolHelpers.h>
|
|
|
|
|
|
std::shared_ptr<Poco::Data::SessionPool> createAndCheckResizePocoSessionPool(PocoSessionPoolConstructor pool_constr)
|
|
{
|
|
static std::mutex mutex;
|
|
|
|
Poco::ThreadPool & pool = Poco::ThreadPool::defaultPool();
|
|
|
|
/// NOTE: The lock don't guarantee that external users of the pool don't change its capacity
|
|
std::unique_lock lock(mutex);
|
|
|
|
if (pool.available() == 0)
|
|
pool.addCapacity(2 * std::max(pool.capacity(), 1));
|
|
|
|
return pool_constr();
|
|
}
|