Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F7123971
D7473.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
D7473.diff
View Options
diff --git a/swh/storage/postgresql/storage.py b/swh/storage/postgresql/storage.py
--- a/swh/storage/postgresql/storage.py
+++ b/swh/storage/postgresql/storage.py
@@ -105,14 +105,43 @@
"""
def __init__(
- self, db, objstorage, min_pool_conns=1, max_pool_conns=10, journal_writer=None
+ self,
+ db,
+ objstorage,
+ min_pool_conns=1,
+ max_pool_conns=10,
+ journal_writer=None,
+ query_options=None,
):
- """
+ """Instantiate a storage instance backed by a PostgreSQL database and an
+ objstorage.
+
+ When ``db`` is passed as a connection string, then this module automatically
+ manages a connection pool between ``min_pool_conns`` and ``max_pool_conns``.
+ When ``db`` is an explicit psycopg2 connection, then ``min_pool_conns`` and
+ ``max_pool_conns`` are ignored and the connection is used directly.
+
Args:
- db_conn: either a libpq connection string, or a psycopg2 connection
- obj_root: path to the root of the object storage
+ db: either a libpq connection string, or a psycopg2 connection
+ objstorage: configuration for the backend :class:`ObjStorage`
+ min_pool_conns: min number of connections in the psycopg2 pool
+ max_pool_conns: max number of connections in the psycopg2 pool
+ journal_writer: configuration for the :class:`JournalWriter`
+ query_options: configuration for the sql connections; keys of the dict are
+ the method names decorated with :func:`db_transaction` or
+ :func:`db_transaction_generator` (eg. :func:`content_find`), and values
+ are dicts (config_name, config_value) used to configure the sql
+ connection for the method_name. For example, using::
+
+ {"content_get": {"statement_timeout": 5000}}
+
+ will override the default statement timeout for the :func:`content_get`
+ endpoint from 500ms to 5000ms.
+
+ See :mod:`swh.core.db.common` for more details.
"""
+
try:
if isinstance(db, psycopg2.extensions.connection):
self._pool = None
@@ -127,9 +156,9 @@
self._db = None
except psycopg2.OperationalError as e:
raise StorageDBError(e)
-
self.journal_writer = JournalWriter(journal_writer)
self.objstorage = ObjStorage(objstorage)
+ self.query_options = query_options
def get_db(self):
if self._db:
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Dec 20 2024, 7:30 AM (11 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3227554
Attached To
D7473: Make postgresql's Storage client options configurable from config
Event Timeline
Log In to Comment