dagster-postgres 0.24.4__py3-none-any.whl → 0.24.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dagster-postgres might be problematic. Click here for more details.
- dagster_postgres/__init__.py +5 -5
- dagster_postgres/event_log/__init__.py +1 -1
- dagster_postgres/event_log/event_log.py +1 -1
- dagster_postgres/run_storage/__init__.py +1 -1
- dagster_postgres/run_storage/run_storage.py +1 -1
- dagster_postgres/schedule_storage/__init__.py +3 -1
- dagster_postgres/schedule_storage/schedule_storage.py +1 -1
- dagster_postgres/storage.py +4 -4
- dagster_postgres/version.py +1 -1
- {dagster_postgres-0.24.4.dist-info → dagster_postgres-0.24.5.dist-info}/METADATA +2 -2
- dagster_postgres-0.24.5.dist-info/RECORD +17 -0
- dagster_postgres-0.24.4.dist-info/RECORD +0 -17
- {dagster_postgres-0.24.4.dist-info → dagster_postgres-0.24.5.dist-info}/LICENSE +0 -0
- {dagster_postgres-0.24.4.dist-info → dagster_postgres-0.24.5.dist-info}/WHEEL +0 -0
- {dagster_postgres-0.24.4.dist-info → dagster_postgres-0.24.5.dist-info}/top_level.txt +0 -0
dagster_postgres/__init__.py
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
from dagster._core.libraries import DagsterLibraryRegistry
|
|
2
2
|
|
|
3
|
-
from .event_log import PostgresEventLogStorage
|
|
4
|
-
from .run_storage import PostgresRunStorage
|
|
5
|
-
from .schedule_storage import PostgresScheduleStorage
|
|
6
|
-
from .storage import DagsterPostgresStorage
|
|
7
|
-
from .version import __version__
|
|
3
|
+
from dagster_postgres.event_log import PostgresEventLogStorage
|
|
4
|
+
from dagster_postgres.run_storage import PostgresRunStorage
|
|
5
|
+
from dagster_postgres.schedule_storage import PostgresScheduleStorage
|
|
6
|
+
from dagster_postgres.storage import DagsterPostgresStorage
|
|
7
|
+
from dagster_postgres.version import __version__
|
|
8
8
|
|
|
9
9
|
DagsterLibraryRegistry.register("dagster-postgres", __version__)
|
|
10
10
|
__all__ = [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
from .event_log import PostgresEventLogStorage as PostgresEventLogStorage
|
|
1
|
+
from dagster_postgres.event_log.event_log import PostgresEventLogStorage as PostgresEventLogStorage
|
|
@@ -33,7 +33,7 @@ from dagster._serdes import ConfigurableClass, ConfigurableClassData, deserializ
|
|
|
33
33
|
from sqlalchemy import event
|
|
34
34
|
from sqlalchemy.engine import Connection
|
|
35
35
|
|
|
36
|
-
from
|
|
36
|
+
from dagster_postgres.utils import (
|
|
37
37
|
create_pg_connection,
|
|
38
38
|
pg_alembic_config,
|
|
39
39
|
pg_url_from_config,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
from .run_storage import PostgresRunStorage as PostgresRunStorage
|
|
1
|
+
from dagster_postgres.run_storage.run_storage import PostgresRunStorage as PostgresRunStorage
|
|
@@ -28,7 +28,7 @@ from dagster._time import datetime_from_timestamp
|
|
|
28
28
|
from sqlalchemy import event
|
|
29
29
|
from sqlalchemy.engine import Connection
|
|
30
30
|
|
|
31
|
-
from
|
|
31
|
+
from dagster_postgres.utils import (
|
|
32
32
|
create_pg_connection,
|
|
33
33
|
pg_alembic_config,
|
|
34
34
|
pg_url_from_config,
|
|
@@ -27,7 +27,7 @@ from dagster._time import get_current_datetime
|
|
|
27
27
|
from sqlalchemy import event
|
|
28
28
|
from sqlalchemy.engine import Connection
|
|
29
29
|
|
|
30
|
-
from
|
|
30
|
+
from dagster_postgres.utils import (
|
|
31
31
|
create_pg_connection,
|
|
32
32
|
pg_alembic_config,
|
|
33
33
|
pg_url_from_config,
|
dagster_postgres/storage.py
CHANGED
|
@@ -9,10 +9,10 @@ from dagster._core.storage.runs import RunStorage
|
|
|
9
9
|
from dagster._core.storage.schedules import ScheduleStorage
|
|
10
10
|
from dagster._serdes import ConfigurableClass, ConfigurableClassData
|
|
11
11
|
|
|
12
|
-
from .event_log import PostgresEventLogStorage
|
|
13
|
-
from .run_storage import PostgresRunStorage
|
|
14
|
-
from .schedule_storage import PostgresScheduleStorage
|
|
15
|
-
from .utils import pg_url_from_config
|
|
12
|
+
from dagster_postgres.event_log import PostgresEventLogStorage
|
|
13
|
+
from dagster_postgres.run_storage import PostgresRunStorage
|
|
14
|
+
from dagster_postgres.schedule_storage import PostgresScheduleStorage
|
|
15
|
+
from dagster_postgres.utils import pg_url_from_config
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
class DagsterPostgresStorage(DagsterStorage, ConfigurableClass):
|
dagster_postgres/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.24.
|
|
1
|
+
__version__ = "0.24.5"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dagster-postgres
|
|
3
|
-
Version: 0.24.
|
|
3
|
+
Version: 0.24.5
|
|
4
4
|
Summary: A Dagster integration for postgres
|
|
5
5
|
Home-page: https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-postgres
|
|
6
6
|
Author: Dagster Labs
|
|
@@ -15,6 +15,6 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
15
15
|
Classifier: Operating System :: OS Independent
|
|
16
16
|
Requires-Python: >=3.8,<3.13
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: dagster ==1.8.
|
|
18
|
+
Requires-Dist: dagster ==1.8.5
|
|
19
19
|
Requires-Dist: psycopg2-binary
|
|
20
20
|
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
dagster_postgres/__init__.py,sha256=h8rM1BA27G8jSAak_WnjfZ_dqyz79x9rfTeroUveu_w,560
|
|
2
|
+
dagster_postgres/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
3
|
+
dagster_postgres/storage.py,sha256=whjOJeT4-W41bZ8xDBg77NGSVJPQzc33IsxpmGNdpVM,4257
|
|
4
|
+
dagster_postgres/utils.py,sha256=DUycPHaK-eq8Gpnulpk7OWGk7TIhWTfS1UkqIyxaKGo,5903
|
|
5
|
+
dagster_postgres/version.py,sha256=6YOhWuSbeZZXix_MT-DcF-iErMerXY0XS-OBD0tO35s,23
|
|
6
|
+
dagster_postgres/alembic/alembic.ini,sha256=GovyDEhu_6HvkWV6txqjdDBOe4BseSM0YDWGxXM5_cA,986
|
|
7
|
+
dagster_postgres/event_log/__init__.py,sha256=wRcUR-StRNrPCqpEzi0MRY8b-r_TEWV17OsEynFqlLs,100
|
|
8
|
+
dagster_postgres/event_log/event_log.py,sha256=SBxt8DURkH4SZd7W2I4RN32f9CkNRV-yEfFjqFt6EMY,15478
|
|
9
|
+
dagster_postgres/run_storage/__init__.py,sha256=oW_546mJ5K-e-RF0Ou7r-4fHWxFthHgPPhWxklsVK1g,94
|
|
10
|
+
dagster_postgres/run_storage/run_storage.py,sha256=LQOuYnhjtyLnTDdVKa1zB-5XGuPV5Xk3FyL8g1tJvWc,9665
|
|
11
|
+
dagster_postgres/schedule_storage/__init__.py,sha256=-jW-1S4Xf5Ew-cz-DjKjU5sVs9EEly_2ELMLOXTewv0,123
|
|
12
|
+
dagster_postgres/schedule_storage/schedule_storage.py,sha256=GZhuV8qjZQfA72TB9Uck_YIQje9LVkdx_fUC59BwAmA,8590
|
|
13
|
+
dagster_postgres-0.24.5.dist-info/LICENSE,sha256=TMatHW4_G9ldRdodEAp-l2Xa2WvsdeOh60E3v1R2jis,11349
|
|
14
|
+
dagster_postgres-0.24.5.dist-info/METADATA,sha256=zhT4Nrb3VelTGGUi32wqQf3AsoTNJA-bB0jl1Srp67c,762
|
|
15
|
+
dagster_postgres-0.24.5.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
16
|
+
dagster_postgres-0.24.5.dist-info/top_level.txt,sha256=lScMtAEKDX1yIv2tGa1nzntBa0HEStfWPfCwD8FWlHk,17
|
|
17
|
+
dagster_postgres-0.24.5.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
dagster_postgres/__init__.py,sha256=LEcXwiGeuZgIvfDg0PVcRuKjUmg0t9Uslx5nLZ8Yg08,480
|
|
2
|
-
dagster_postgres/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
3
|
-
dagster_postgres/storage.py,sha256=uo264Cr0it0KzduaGD5_54YmjAPng5Vy5AhPsffPPEU,4193
|
|
4
|
-
dagster_postgres/utils.py,sha256=DUycPHaK-eq8Gpnulpk7OWGk7TIhWTfS1UkqIyxaKGo,5903
|
|
5
|
-
dagster_postgres/version.py,sha256=QtmHd2KPIWbTlzWh8qV0M9BePRv5aSbGCH_iSzfDh7g,23
|
|
6
|
-
dagster_postgres/alembic/alembic.ini,sha256=GovyDEhu_6HvkWV6txqjdDBOe4BseSM0YDWGxXM5_cA,986
|
|
7
|
-
dagster_postgres/event_log/__init__.py,sha256=pQ7nZw5Fp60xVd_JPsZ61n6G5V4d0y8MfUGNkHvgbik,74
|
|
8
|
-
dagster_postgres/event_log/event_log.py,sha256=FnjfJqy9I_U9bU74qlZNokJ6dMvhMYzoZJhSDKcvYXc,15463
|
|
9
|
-
dagster_postgres/run_storage/__init__.py,sha256=4bI2C2kkZO9glXH8jIUViYBRSeMjdDHiVQVi_k1HkYw,66
|
|
10
|
-
dagster_postgres/run_storage/run_storage.py,sha256=_TY44MDXZzuQvnLO19SSjM7eikXyRhX7Pftlkl6NNuA,9650
|
|
11
|
-
dagster_postgres/schedule_storage/__init__.py,sha256=GKJlFZYh27fUxJDMQwNJUwibbTnip1ledbcokczutmk,81
|
|
12
|
-
dagster_postgres/schedule_storage/schedule_storage.py,sha256=0NXMpERDWBflxsCmaESMQFPZ5QSTKauzGaNnT9BkNkg,8575
|
|
13
|
-
dagster_postgres-0.24.4.dist-info/LICENSE,sha256=TMatHW4_G9ldRdodEAp-l2Xa2WvsdeOh60E3v1R2jis,11349
|
|
14
|
-
dagster_postgres-0.24.4.dist-info/METADATA,sha256=Zrps_60014LG60R3zdWXp3eg2tWZbOI1DPG9Rec3Xqc,762
|
|
15
|
-
dagster_postgres-0.24.4.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
16
|
-
dagster_postgres-0.24.4.dist-info/top_level.txt,sha256=lScMtAEKDX1yIv2tGa1nzntBa0HEStfWPfCwD8FWlHk,17
|
|
17
|
-
dagster_postgres-0.24.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|