dagster-cloud 1.12.12__py3-none-any.whl → 1.12.13rc0__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.
- dagster_cloud/storage/event_logs/storage.py +15 -1
- dagster_cloud/version.py +1 -1
- {dagster_cloud-1.12.12.dist-info → dagster_cloud-1.12.13rc0.dist-info}/METADATA +7 -7
- {dagster_cloud-1.12.12.dist-info → dagster_cloud-1.12.13rc0.dist-info}/RECORD +6 -6
- {dagster_cloud-1.12.12.dist-info → dagster_cloud-1.12.13rc0.dist-info}/WHEEL +1 -1
- {dagster_cloud-1.12.12.dist-info → dagster_cloud-1.12.13rc0.dist-info}/top_level.txt +0 -0
|
@@ -17,6 +17,7 @@ from dagster._core.event_api import (
|
|
|
17
17
|
EventLogRecord,
|
|
18
18
|
EventRecordsFilter,
|
|
19
19
|
EventRecordsResult,
|
|
20
|
+
PartitionKeyFilter,
|
|
20
21
|
RunShardedEventsCursor,
|
|
21
22
|
RunStatusChangeRecordsFilter,
|
|
22
23
|
)
|
|
@@ -27,6 +28,7 @@ from dagster._core.instance.config import PoolConfig, PoolGranularity
|
|
|
27
28
|
from dagster._core.storage.asset_check_execution_record import (
|
|
28
29
|
AssetCheckExecutionRecord,
|
|
29
30
|
AssetCheckExecutionRecordStatus,
|
|
31
|
+
AssetCheckPartitionInfo,
|
|
30
32
|
)
|
|
31
33
|
from dagster._core.storage.dagster_run import DagsterRunStatsSnapshot
|
|
32
34
|
from dagster._core.storage.event_log.base import (
|
|
@@ -378,6 +380,7 @@ def _asset_check_execution_record_from_graphql(data: dict, key: AssetCheckKey):
|
|
|
378
380
|
status=AssetCheckExecutionRecordStatus(data["status"]),
|
|
379
381
|
event=_event_log_entry_from_graphql(data["event"]),
|
|
380
382
|
create_timestamp=data["createTimestamp"],
|
|
383
|
+
partition=data.get("partition"),
|
|
381
384
|
)
|
|
382
385
|
|
|
383
386
|
|
|
@@ -1232,14 +1235,25 @@ class GraphQLEventLogStorage(EventLogStorage, ConfigurableClass):
|
|
|
1232
1235
|
limit: int,
|
|
1233
1236
|
cursor: Optional[int] = None,
|
|
1234
1237
|
status: Optional[AbstractSet[AssetCheckExecutionRecordStatus]] = None,
|
|
1238
|
+
partition_filter: Optional[PartitionKeyFilter] = None,
|
|
1235
1239
|
) -> Sequence[AssetCheckExecutionRecord]:
|
|
1236
1240
|
raise NotImplementedError("Not callable from user cloud")
|
|
1237
1241
|
|
|
1238
1242
|
def get_latest_asset_check_execution_by_key(
|
|
1239
|
-
self,
|
|
1243
|
+
self,
|
|
1244
|
+
check_keys: Sequence[AssetCheckKey],
|
|
1245
|
+
partition_filter: Optional[PartitionKeyFilter] = None,
|
|
1240
1246
|
) -> Mapping[AssetCheckKey, AssetCheckExecutionRecord]:
|
|
1241
1247
|
raise NotImplementedError("Not callable from user cloud")
|
|
1242
1248
|
|
|
1249
|
+
def get_asset_check_partition_info(
|
|
1250
|
+
self,
|
|
1251
|
+
keys: Sequence[AssetCheckKey],
|
|
1252
|
+
after_storage_id: Optional[int] = None,
|
|
1253
|
+
partition_keys: Optional[Sequence[str]] = None,
|
|
1254
|
+
) -> Sequence[AssetCheckPartitionInfo]:
|
|
1255
|
+
raise NotImplementedError("Not callable from user cloud")
|
|
1256
|
+
|
|
1243
1257
|
def fetch_materializations(
|
|
1244
1258
|
self,
|
|
1245
1259
|
records_filter: Union[AssetKey, AssetRecordsFilter],
|
dagster_cloud/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.12.
|
|
1
|
+
__version__ = "1.12.13rc0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dagster-cloud
|
|
3
|
-
Version: 1.12.
|
|
3
|
+
Version: 1.12.13rc0
|
|
4
4
|
Author-email: Elementl <support@elementl.com>
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://dagster.io/cloud
|
|
@@ -30,9 +30,9 @@ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
|
30
30
|
Classifier: Operating System :: OS Independent
|
|
31
31
|
Requires-Python: <3.15,>=3.9
|
|
32
32
|
Description-Content-Type: text/markdown
|
|
33
|
-
Requires-Dist: dagster==1.12.
|
|
34
|
-
Requires-Dist: dagster-shared==1.12.
|
|
35
|
-
Requires-Dist: dagster-cloud-cli==1.12.
|
|
33
|
+
Requires-Dist: dagster==1.12.13rc0
|
|
34
|
+
Requires-Dist: dagster-shared==1.12.13rc0
|
|
35
|
+
Requires-Dist: dagster-cloud-cli==1.12.13rc0
|
|
36
36
|
Requires-Dist: pex<2.60.0,>=2.1.132
|
|
37
37
|
Requires-Dist: questionary
|
|
38
38
|
Requires-Dist: requests
|
|
@@ -68,12 +68,12 @@ Provides-Extra: insights
|
|
|
68
68
|
Requires-Dist: pyarrow; extra == "insights"
|
|
69
69
|
Provides-Extra: docker
|
|
70
70
|
Requires-Dist: docker; extra == "docker"
|
|
71
|
-
Requires-Dist: dagster-docker==0.28.
|
|
71
|
+
Requires-Dist: dagster-docker==0.28.13rc0; extra == "docker"
|
|
72
72
|
Provides-Extra: kubernetes
|
|
73
73
|
Requires-Dist: kubernetes; extra == "kubernetes"
|
|
74
|
-
Requires-Dist: dagster-k8s==0.28.
|
|
74
|
+
Requires-Dist: dagster-k8s==0.28.13rc0; extra == "kubernetes"
|
|
75
75
|
Provides-Extra: ecs
|
|
76
|
-
Requires-Dist: dagster-aws==0.28.
|
|
76
|
+
Requires-Dist: dagster-aws==0.28.13rc0; extra == "ecs"
|
|
77
77
|
Requires-Dist: boto3; extra == "ecs"
|
|
78
78
|
Provides-Extra: sandbox
|
|
79
79
|
Requires-Dist: supervisor; extra == "sandbox"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
dagster_cloud/__init__.py,sha256=zyM9bqyJFxtEClv_5X4VRldrj0UniKgZzEl0pPJJ_Ts,355
|
|
2
2
|
dagster_cloud/constants.py,sha256=CPAqXJ99SWGMviksdIA2A9894FEvHChNk8UcP4TluYM,455
|
|
3
3
|
dagster_cloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
dagster_cloud/version.py,sha256=
|
|
4
|
+
dagster_cloud/version.py,sha256=RoGg2ULy-L38R1P4EVRD4tXkJ-Co9HiCIDUzQwepAcY,27
|
|
5
5
|
dagster_cloud/agent/__init__.py,sha256=_erVyIrxuHUiyNerwX8vNZcKZN8NAloTEkPq8vPZ3MI,811
|
|
6
6
|
dagster_cloud/agent/dagster_cloud_agent.py,sha256=SK_aJX60jXtMbV9ebtSqN6R9XAmF51bl9uEMA9DJdNo,59009
|
|
7
7
|
dagster_cloud/agent/queries.py,sha256=iI84GQ1Zxt5ryo6M1ELIaIae-gwUY14QPPMUeiFK97o,1837
|
|
@@ -75,7 +75,7 @@ dagster_cloud/storage/defs_state/queries.py,sha256=UICxqqWH1gCpE_YR7TedxanES2gZ_
|
|
|
75
75
|
dagster_cloud/storage/defs_state/storage.py,sha256=AwuEUuMZQrlmOPZZXVdW73M8KnTdkK4G3ViCfL9iLDM,3979
|
|
76
76
|
dagster_cloud/storage/event_logs/__init__.py,sha256=kZotTbwh4KGH6Oe7PFXj1PMg9ji85hOOX4NcYHK6JJY,111
|
|
77
77
|
dagster_cloud/storage/event_logs/queries.py,sha256=sgkHhHX-0Vr9WukcRjbuGSH8vjC9razSNnwqXBrihX8,19924
|
|
78
|
-
dagster_cloud/storage/event_logs/storage.py,sha256=
|
|
78
|
+
dagster_cloud/storage/event_logs/storage.py,sha256=DqSBkWzsowhv8B8n9Ix0gZHSUhinvH-_E8ffKyugP8M,56991
|
|
79
79
|
dagster_cloud/storage/event_logs/utils.py,sha256=M6uvW8L-H7600bjOy5yTTealHVKKXAFBJO4dRZObTdI,3061
|
|
80
80
|
dagster_cloud/storage/runs/__init__.py,sha256=aNua07DabXVkxhOvQol1Vai4Lg88a_BwuxnvKiwV6_4,86
|
|
81
81
|
dagster_cloud/storage/runs/queries.py,sha256=vJFvL5cU8iV-CqwOZUTupKJ42-LJ0FJDR113LjOqWvc,7250
|
|
@@ -106,7 +106,7 @@ dagster_cloud/workspace/user_code_launcher/__init__.py,sha256=E-Izs69AHPAXD9pqd3
|
|
|
106
106
|
dagster_cloud/workspace/user_code_launcher/process.py,sha256=6TwjlXZzBlzyQEvmGzuVAUgxe_vCye0Q3aYkPPDAshs,14315
|
|
107
107
|
dagster_cloud/workspace/user_code_launcher/user_code_launcher.py,sha256=-W2kXXgpGWRwqApgAc34RdL1YnOU_Ju6cfNniddm9co,100659
|
|
108
108
|
dagster_cloud/workspace/user_code_launcher/utils.py,sha256=gdZEi8Z4EWLNlAljzCWBz3oJ_h8HaiVnN9_BUoCghWw,5845
|
|
109
|
-
dagster_cloud-1.12.
|
|
110
|
-
dagster_cloud-1.12.
|
|
111
|
-
dagster_cloud-1.12.
|
|
112
|
-
dagster_cloud-1.12.
|
|
109
|
+
dagster_cloud-1.12.13rc0.dist-info/METADATA,sha256=-XuRDa2-XKPLN2fyL6E5Qpy76Z8TDItlHK2CqKtWGaw,6729
|
|
110
|
+
dagster_cloud-1.12.13rc0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
111
|
+
dagster_cloud-1.12.13rc0.dist-info/top_level.txt,sha256=2hMt-U33jyCgnywNrDB9Ih0EpaVmiO6dFkYcJ7Iwx4I,14
|
|
112
|
+
dagster_cloud-1.12.13rc0.dist-info/RECORD,,
|
|
File without changes
|