refactor: Enable more connections to postgreSQL
This commit is contained in:
parent
cbadf6590b
commit
7395db078a
1 changed files with 3 additions and 2 deletions
|
|
@ -58,10 +58,11 @@ class SQLAlchemyAdapter:
|
||||||
else:
|
else:
|
||||||
self.engine = create_async_engine(
|
self.engine = create_async_engine(
|
||||||
connection_string,
|
connection_string,
|
||||||
pool_size=1, # one physical session per container
|
pool_size=5,
|
||||||
max_overflow=1,
|
max_overflow=10,
|
||||||
pool_recycle=280,
|
pool_recycle=280,
|
||||||
pool_pre_ping=True,
|
pool_pre_ping=True,
|
||||||
|
pool_timeout=280,
|
||||||
)
|
)
|
||||||
|
|
||||||
self.sessionmaker = async_sessionmaker(bind=self.engine, expire_on_commit=False)
|
self.sessionmaker = async_sessionmaker(bind=self.engine, expire_on_commit=False)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue