dagster-cloud 1.11.12__py3-none-any.whl → 1.11.13__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/__init__.py +3 -3
- dagster_cloud/agent/dagster_cloud_agent.py +13 -14
- dagster_cloud/anomaly_detection/__init__.py +2 -2
- dagster_cloud/anomaly_detection/defs.py +2 -2
- dagster_cloud/batching/__init__.py +1 -1
- dagster_cloud/dagster_insights/__init__.py +12 -6
- dagster_cloud/dagster_insights/bigquery/dbt_wrapper.py +8 -2
- dagster_cloud/dagster_insights/bigquery/insights_bigquery_resource.py +4 -2
- dagster_cloud/dagster_insights/snowflake/dagster_snowflake_insights.py +1 -9
- dagster_cloud/dagster_insights/snowflake/dbt_wrapper.py +9 -2
- dagster_cloud/dagster_insights/snowflake/definitions.py +5 -4
- dagster_cloud/dagster_insights/snowflake/insights_snowflake_resource.py +1 -2
- dagster_cloud/execution/utils/process.py +1 -1
- dagster_cloud/instance/__init__.py +5 -6
- dagster_cloud/opentelemetry/config/exporter.py +1 -1
- dagster_cloud/opentelemetry/observers/execution_observer.py +4 -2
- dagster_cloud/pex/grpc/__init__.py +2 -2
- dagster_cloud/pex/grpc/client.py +2 -2
- dagster_cloud/pex/grpc/server/__init__.py +2 -2
- dagster_cloud/pex/grpc/server/cli/__init__.py +2 -2
- dagster_cloud/pex/grpc/server/manager.py +2 -3
- dagster_cloud/pex/grpc/server/registry.py +5 -1
- dagster_cloud/pex/grpc/server/server.py +4 -4
- dagster_cloud/secrets/__init__.py +1 -1
- dagster_cloud/serverless/__init__.py +1 -1
- dagster_cloud/serverless/io_manager.py +4 -1
- dagster_cloud/storage/compute_logs/__init__.py +3 -1
- dagster_cloud/storage/defs_state/__init__.py +3 -1
- dagster_cloud/storage/event_logs/__init__.py +3 -1
- dagster_cloud/storage/event_logs/storage.py +1 -1
- dagster_cloud/storage/runs/__init__.py +1 -1
- dagster_cloud/storage/runs/storage.py +1 -1
- dagster_cloud/storage/schedules/__init__.py +1 -1
- dagster_cloud/storage/schedules/storage.py +1 -1
- dagster_cloud/version.py +1 -1
- dagster_cloud/workspace/config_schema/__init__.py +3 -3
- dagster_cloud/workspace/docker/__init__.py +8 -7
- dagster_cloud/workspace/docker/utils.py +1 -1
- dagster_cloud/workspace/ecs/__init__.py +1 -1
- dagster_cloud/workspace/ecs/launcher.py +7 -5
- dagster_cloud/workspace/ecs/run_launcher.py +1 -2
- dagster_cloud/workspace/ecs/utils.py +4 -1
- dagster_cloud/workspace/kubernetes/__init__.py +1 -1
- dagster_cloud/workspace/kubernetes/launcher.py +11 -12
- dagster_cloud/workspace/kubernetes/utils.py +1 -2
- dagster_cloud/workspace/user_code_launcher/__init__.py +5 -3
- dagster_cloud/workspace/user_code_launcher/process.py +2 -3
- {dagster_cloud-1.11.12.dist-info → dagster_cloud-1.11.13.dist-info}/METADATA +7 -7
- {dagster_cloud-1.11.12.dist-info → dagster_cloud-1.11.13.dist-info}/RECORD +51 -51
- {dagster_cloud-1.11.12.dist-info → dagster_cloud-1.11.13.dist-info}/WHEEL +0 -0
- {dagster_cloud-1.11.12.dist-info → dagster_cloud-1.11.13.dist-info}/top_level.txt +0 -0
dagster_cloud/__init__.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from dagster._core.libraries import DagsterLibraryRegistry
|
|
2
2
|
|
|
3
|
-
from .instance import DagsterCloudAgentInstance as DagsterCloudAgentInstance
|
|
4
|
-
from .storage.compute_logs import CloudComputeLogManager as CloudComputeLogManager
|
|
5
|
-
from .version import __version__
|
|
3
|
+
from dagster_cloud.instance import DagsterCloudAgentInstance as DagsterCloudAgentInstance
|
|
4
|
+
from dagster_cloud.storage.compute_logs import CloudComputeLogManager as CloudComputeLogManager
|
|
5
|
+
from dagster_cloud.version import __version__
|
|
6
6
|
|
|
7
7
|
DagsterLibraryRegistry.register("dagster-cloud", __version__)
|
|
@@ -31,6 +31,16 @@ from dagster._utils.typed_dict import init_optional_typeddict
|
|
|
31
31
|
from dagster_cloud_cli.core.errors import DagsterCloudHTTPError, raise_http_error
|
|
32
32
|
from dagster_cloud_cli.core.workspace import CodeLocationDeployData
|
|
33
33
|
|
|
34
|
+
from dagster_cloud.agent.instrumentation.constants import DAGSTER_CLOUD_AGENT_METRIC_PREFIX
|
|
35
|
+
from dagster_cloud.agent.instrumentation.run_launch import extract_run_attributes
|
|
36
|
+
from dagster_cloud.agent.instrumentation.schedule import inspect_schedule_result
|
|
37
|
+
from dagster_cloud.agent.instrumentation.sensor import inspect_sensor_result
|
|
38
|
+
from dagster_cloud.agent.queries import (
|
|
39
|
+
ADD_AGENT_HEARTBEATS_MUTATION,
|
|
40
|
+
DEPLOYMENTS_QUERY,
|
|
41
|
+
GET_USER_CLOUD_REQUESTS_QUERY,
|
|
42
|
+
WORKSPACE_ENTRIES_QUERY,
|
|
43
|
+
)
|
|
34
44
|
from dagster_cloud.api.dagster_cloud_api import (
|
|
35
45
|
AgentHeartbeat,
|
|
36
46
|
AgentUtilizationMetrics,
|
|
@@ -48,26 +58,15 @@ from dagster_cloud.api.dagster_cloud_api import (
|
|
|
48
58
|
)
|
|
49
59
|
from dagster_cloud.batching import Batcher
|
|
50
60
|
from dagster_cloud.instance import DagsterCloudAgentInstance
|
|
61
|
+
from dagster_cloud.opentelemetry.observers.execution_observer import observe_execution
|
|
62
|
+
from dagster_cloud.util import SERVER_HANDLE_TAG, compressed_namedtuple_upload_file, is_isolated_run
|
|
63
|
+
from dagster_cloud.version import __version__
|
|
51
64
|
from dagster_cloud.workspace.user_code_launcher import (
|
|
52
65
|
DagsterCloudUserCodeLauncher,
|
|
53
66
|
UserCodeLauncherEntry,
|
|
54
67
|
)
|
|
55
68
|
from dagster_cloud.workspace.user_code_launcher.utils import get_instance_ref_for_user_code
|
|
56
69
|
|
|
57
|
-
from ..opentelemetry.observers.execution_observer import observe_execution
|
|
58
|
-
from ..util import SERVER_HANDLE_TAG, compressed_namedtuple_upload_file, is_isolated_run
|
|
59
|
-
from ..version import __version__
|
|
60
|
-
from .instrumentation.constants import DAGSTER_CLOUD_AGENT_METRIC_PREFIX
|
|
61
|
-
from .instrumentation.run_launch import extract_run_attributes
|
|
62
|
-
from .instrumentation.schedule import inspect_schedule_result
|
|
63
|
-
from .instrumentation.sensor import inspect_sensor_result
|
|
64
|
-
from .queries import (
|
|
65
|
-
ADD_AGENT_HEARTBEATS_MUTATION,
|
|
66
|
-
DEPLOYMENTS_QUERY,
|
|
67
|
-
GET_USER_CLOUD_REQUESTS_QUERY,
|
|
68
|
-
WORKSPACE_ENTRIES_QUERY,
|
|
69
|
-
)
|
|
70
|
-
|
|
71
70
|
if TYPE_CHECKING:
|
|
72
71
|
import datetime
|
|
73
72
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
from .defs import (
|
|
1
|
+
from dagster_cloud.anomaly_detection.defs import (
|
|
2
2
|
build_anomaly_detection_freshness_checks as build_anomaly_detection_freshness_checks,
|
|
3
3
|
)
|
|
4
|
-
from .types import (
|
|
4
|
+
from dagster_cloud.anomaly_detection.types import (
|
|
5
5
|
AnomalyDetectionModelParams as AnomalyDetectionModelParams,
|
|
6
6
|
BetaFreshnessAnomalyDetectionParams as BetaFreshnessAnomalyDetectionParams,
|
|
7
7
|
)
|
|
@@ -39,8 +39,8 @@ from dagster_cloud_cli.core.graphql_client import (
|
|
|
39
39
|
create_cloud_webserver_client,
|
|
40
40
|
)
|
|
41
41
|
|
|
42
|
-
from .mutation import ANOMALY_DETECTION_INFERENCE_MUTATION
|
|
43
|
-
from .types import (
|
|
42
|
+
from dagster_cloud.anomaly_detection.mutation import ANOMALY_DETECTION_INFERENCE_MUTATION
|
|
43
|
+
from dagster_cloud.anomaly_detection.types import (
|
|
44
44
|
AnomalyDetectionModelParams,
|
|
45
45
|
BetaFreshnessAnomalyDetectionParams,
|
|
46
46
|
FreshnessAnomalyDetectionResult,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
from .batcher import Batcher as Batcher
|
|
1
|
+
from dagster_cloud.batching.batcher import Batcher as Batcher
|
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
from typing import Any
|
|
3
3
|
|
|
4
|
-
from .snowflake.dbt_wrapper import
|
|
5
|
-
|
|
4
|
+
from dagster_cloud.dagster_insights.snowflake.dbt_wrapper import (
|
|
5
|
+
dbt_with_snowflake_insights as dbt_with_snowflake_insights,
|
|
6
|
+
)
|
|
7
|
+
from dagster_cloud.dagster_insights.snowflake.definitions import (
|
|
6
8
|
create_snowflake_insights_asset_and_schedule as create_snowflake_insights_asset_and_schedule,
|
|
7
9
|
)
|
|
8
|
-
from .snowflake.snowflake_utils import
|
|
10
|
+
from dagster_cloud.dagster_insights.snowflake.snowflake_utils import (
|
|
11
|
+
meter_snowflake_query as meter_snowflake_query,
|
|
12
|
+
)
|
|
9
13
|
|
|
10
14
|
dagster_snowflake_req_imports = {"InsightsSnowflakeResource"}
|
|
11
15
|
try:
|
|
12
|
-
from .snowflake.insights_snowflake_resource import (
|
|
16
|
+
from dagster_cloud.dagster_insights.snowflake.insights_snowflake_resource import (
|
|
13
17
|
InsightsSnowflakeResource as InsightsSnowflakeResource,
|
|
14
18
|
)
|
|
15
19
|
except ImportError:
|
|
@@ -17,8 +21,10 @@ except ImportError:
|
|
|
17
21
|
|
|
18
22
|
dagster_bigquery_req_imports = {"InsightsBigQueryResource", "dbt_with_bigquery_insights"}
|
|
19
23
|
try:
|
|
20
|
-
from .bigquery.dbt_wrapper import
|
|
21
|
-
|
|
24
|
+
from dagster_cloud.dagster_insights.bigquery.dbt_wrapper import (
|
|
25
|
+
dbt_with_bigquery_insights as dbt_with_bigquery_insights,
|
|
26
|
+
)
|
|
27
|
+
from dagster_cloud.dagster_insights.bigquery.insights_bigquery_resource import (
|
|
22
28
|
InsightsBigQueryResource as InsightsBigQueryResource,
|
|
23
29
|
)
|
|
24
30
|
except ImportError:
|
|
@@ -18,8 +18,14 @@ from dagster_dbt import DbtCliInvocation
|
|
|
18
18
|
from dagster_dbt.version import __version__ as dagster_dbt_version
|
|
19
19
|
from packaging import version
|
|
20
20
|
|
|
21
|
-
from
|
|
22
|
-
|
|
21
|
+
from dagster_cloud.dagster_insights.bigquery.bigquery_utils import (
|
|
22
|
+
build_bigquery_cost_metadata,
|
|
23
|
+
marker_asset_key_for_job,
|
|
24
|
+
)
|
|
25
|
+
from dagster_cloud.dagster_insights.insights_utils import (
|
|
26
|
+
extract_asset_info_from_event,
|
|
27
|
+
handle_raise_on_error,
|
|
28
|
+
)
|
|
23
29
|
|
|
24
30
|
if TYPE_CHECKING:
|
|
25
31
|
from dbt.adapters.base.impl import BaseAdapter
|
|
@@ -7,10 +7,12 @@ from dagster_gcp import BigQueryResource
|
|
|
7
7
|
from dagster_gcp.bigquery.utils import setup_gcp_creds
|
|
8
8
|
from google.cloud import bigquery
|
|
9
9
|
|
|
10
|
+
from dagster_cloud.dagster_insights.bigquery.bigquery_utils import (
|
|
11
|
+
build_bigquery_cost_metadata,
|
|
12
|
+
marker_asset_key_for_job,
|
|
13
|
+
)
|
|
10
14
|
from dagster_cloud.dagster_insights.insights_utils import get_current_context_and_asset_key
|
|
11
15
|
|
|
12
|
-
from .bigquery_utils import build_bigquery_cost_metadata, marker_asset_key_for_job
|
|
13
|
-
|
|
14
16
|
OUTPUT_NON_ASSET_SIGIL = "__bigquery_query_metadata_"
|
|
15
17
|
|
|
16
18
|
|
|
@@ -6,7 +6,7 @@ from typing import TYPE_CHECKING, Optional
|
|
|
6
6
|
|
|
7
7
|
from dagster import AssetKey, AssetsDefinition, ScheduleDefinition
|
|
8
8
|
|
|
9
|
-
from .snowflake_utils import OPAQUE_ID_SQL_SIGIL
|
|
9
|
+
from dagster_cloud.dagster_insights.snowflake.snowflake_utils import OPAQUE_ID_SQL_SIGIL
|
|
10
10
|
|
|
11
11
|
if TYPE_CHECKING:
|
|
12
12
|
from dagster_snowflake import SnowflakeConnection
|
|
@@ -78,10 +78,6 @@ HAVING ARRAY_SIZE(opaque_ids) > 0
|
|
|
78
78
|
|
|
79
79
|
costs: list[tuple[str, float, str]] = []
|
|
80
80
|
|
|
81
|
-
print(
|
|
82
|
-
f"{len(results) if results else 0} annotated queries returned from snowflake query_history"
|
|
83
|
-
)
|
|
84
|
-
|
|
85
81
|
if not results:
|
|
86
82
|
return []
|
|
87
83
|
|
|
@@ -94,8 +90,4 @@ HAVING ARRAY_SIZE(opaque_ids) > 0
|
|
|
94
90
|
for opaque_id in opaque_ids:
|
|
95
91
|
costs.append((opaque_id, float(cost), query_id))
|
|
96
92
|
|
|
97
|
-
print(
|
|
98
|
-
f"Reported costs for {len(costs)} of {total} asset materializations found in the"
|
|
99
|
-
" query_history."
|
|
100
|
-
)
|
|
101
93
|
return costs
|
|
@@ -13,8 +13,15 @@ from dagster import (
|
|
|
13
13
|
Output,
|
|
14
14
|
)
|
|
15
15
|
|
|
16
|
-
from
|
|
17
|
-
|
|
16
|
+
from dagster_cloud.dagster_insights.insights_utils import (
|
|
17
|
+
extract_asset_info_from_event,
|
|
18
|
+
handle_raise_on_error,
|
|
19
|
+
)
|
|
20
|
+
from dagster_cloud.dagster_insights.snowflake.snowflake_utils import (
|
|
21
|
+
OPAQUE_ID_SQL_SIGIL,
|
|
22
|
+
build_opaque_id_metadata,
|
|
23
|
+
marker_asset_key_for_job,
|
|
24
|
+
)
|
|
18
25
|
|
|
19
26
|
if TYPE_CHECKING:
|
|
20
27
|
from dagster_dbt import DbtCliInvocation
|
|
@@ -2,7 +2,6 @@ import warnings
|
|
|
2
2
|
from collections.abc import Sequence
|
|
3
3
|
from dataclasses import dataclass
|
|
4
4
|
from datetime import date, datetime, timedelta, timezone
|
|
5
|
-
from pprint import pprint
|
|
6
5
|
from typing import TYPE_CHECKING, Optional, Union
|
|
7
6
|
|
|
8
7
|
from dagster import (
|
|
@@ -27,8 +26,10 @@ from dagster._core.storage.tags import (
|
|
|
27
26
|
ASSET_PARTITION_RANGE_START_TAG,
|
|
28
27
|
)
|
|
29
28
|
|
|
30
|
-
from
|
|
31
|
-
from .dagster_snowflake_insights import
|
|
29
|
+
from dagster_cloud.dagster_insights.metrics_utils import put_cost_information
|
|
30
|
+
from dagster_cloud.dagster_insights.snowflake.dagster_snowflake_insights import (
|
|
31
|
+
get_cost_data_for_hour,
|
|
32
|
+
)
|
|
32
33
|
|
|
33
34
|
if TYPE_CHECKING:
|
|
34
35
|
from dagster_snowflake import SnowflakeConnection
|
|
@@ -154,7 +155,7 @@ def create_snowflake_insights_asset_and_schedule(
|
|
|
154
155
|
)
|
|
155
156
|
|
|
156
157
|
if dry_run:
|
|
157
|
-
|
|
158
|
+
pass
|
|
158
159
|
else:
|
|
159
160
|
context.log.info(
|
|
160
161
|
f"Submitting cost information for {len(costs)} queries to Dagster Insights"
|
|
@@ -20,8 +20,7 @@ from dagster_snowflake import SnowflakeConnection, SnowflakeResource
|
|
|
20
20
|
from snowflake.connector.cursor import SnowflakeCursor
|
|
21
21
|
|
|
22
22
|
from dagster_cloud.dagster_insights.insights_utils import get_current_context_and_asset_key
|
|
23
|
-
|
|
24
|
-
from .snowflake_utils import meter_snowflake_query
|
|
23
|
+
from dagster_cloud.dagster_insights.snowflake.snowflake_utils import meter_snowflake_query
|
|
25
24
|
|
|
26
25
|
|
|
27
26
|
def get_current_context_and_asset_key_or_warn() -> tuple[
|
|
@@ -32,14 +32,13 @@ from dagster_cloud_cli.core.headers.auth import DagsterCloudInstanceScope
|
|
|
32
32
|
from urllib3 import Retry
|
|
33
33
|
|
|
34
34
|
from dagster_cloud.agent import AgentQueuesConfig
|
|
35
|
+
from dagster_cloud.auth.constants import decode_agent_token
|
|
36
|
+
from dagster_cloud.opentelemetry.config import opentelemetry_config_schema
|
|
37
|
+
from dagster_cloud.opentelemetry.controller import OpenTelemetryController
|
|
38
|
+
from dagster_cloud.storage.client import dagster_cloud_api_config
|
|
39
|
+
from dagster_cloud.util import get_env_names_from_config, is_isolated_run
|
|
35
40
|
from dagster_cloud.version import __version__
|
|
36
41
|
|
|
37
|
-
from ..auth.constants import decode_agent_token
|
|
38
|
-
from ..opentelemetry.config import opentelemetry_config_schema
|
|
39
|
-
from ..opentelemetry.controller import OpenTelemetryController
|
|
40
|
-
from ..storage.client import dagster_cloud_api_config
|
|
41
|
-
from ..util import get_env_names_from_config, is_isolated_run
|
|
42
|
-
|
|
43
42
|
if TYPE_CHECKING:
|
|
44
43
|
from requests import Session
|
|
45
44
|
|
|
@@ -5,8 +5,10 @@ from typing import Callable, Optional
|
|
|
5
5
|
from dagster import DagsterError
|
|
6
6
|
from dagster._time import get_current_timestamp
|
|
7
7
|
|
|
8
|
-
from
|
|
9
|
-
from .dagster_exception_handler import
|
|
8
|
+
from dagster_cloud.opentelemetry.controller import OpenTelemetryController
|
|
9
|
+
from dagster_cloud.opentelemetry.observers.dagster_exception_handler import (
|
|
10
|
+
extract_dagster_error_attributes,
|
|
11
|
+
)
|
|
10
12
|
|
|
11
13
|
ResultEvaluatorCallback = Callable[..., str]
|
|
12
14
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
from .client import (
|
|
1
|
+
from dagster_cloud.pex.grpc.client import (
|
|
2
2
|
MultiPexGrpcClient as MultiPexGrpcClient,
|
|
3
3
|
wait_for_grpc_server as wait_for_grpc_server,
|
|
4
4
|
)
|
|
5
|
-
from .types import (
|
|
5
|
+
from dagster_cloud.pex.grpc.types import (
|
|
6
6
|
CreatePexServerArgs as CreatePexServerArgs,
|
|
7
7
|
GetPexServersArgs as GetPexServersArgs,
|
|
8
8
|
PexServerHandle as PexServerHandle,
|
dagster_cloud/pex/grpc/client.py
CHANGED
|
@@ -12,8 +12,8 @@ from dagster._serdes import serialize_value
|
|
|
12
12
|
from dagster._utils.error import SerializableErrorInfo, serializable_error_info_from_exc_info
|
|
13
13
|
from dagster_shared.serdes.serdes import deserialize_value
|
|
14
14
|
|
|
15
|
-
from .__generated__ import MultiPexApiStub, multi_pex_api_pb2
|
|
16
|
-
from .types import (
|
|
15
|
+
from dagster_cloud.pex.grpc.__generated__ import MultiPexApiStub, multi_pex_api_pb2
|
|
16
|
+
from dagster_cloud.pex.grpc.types import (
|
|
17
17
|
CreatePexServerArgs,
|
|
18
18
|
CreatePexServerResponse,
|
|
19
19
|
GetCrashedPexServersArgs,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
from .manager import MultiPexManager as MultiPexManager
|
|
2
|
-
from .server import run_multipex_server as run_multipex_server
|
|
1
|
+
from dagster_cloud.pex.grpc.server.manager import MultiPexManager as MultiPexManager
|
|
2
|
+
from dagster_cloud.pex.grpc.server.server import run_multipex_server as run_multipex_server
|
|
@@ -9,8 +9,8 @@ from dagster._utils.interrupts import setup_interrupt_handlers
|
|
|
9
9
|
from dagster_cloud_cli.core.workspace import PexMetadata
|
|
10
10
|
from typer import Option, Typer
|
|
11
11
|
|
|
12
|
-
from
|
|
13
|
-
from
|
|
12
|
+
from dagster_cloud.pex.grpc.server.registry import PexS3Registry
|
|
13
|
+
from dagster_cloud.pex.grpc.server.server import run_multipex_server
|
|
14
14
|
|
|
15
15
|
app = Typer(hidden=True)
|
|
16
16
|
|
|
@@ -18,11 +18,10 @@ from dagster_shared import seven
|
|
|
18
18
|
from dagster_shared.ipc import open_ipc_subprocess
|
|
19
19
|
from pydantic import BaseModel, Extra
|
|
20
20
|
|
|
21
|
+
from dagster_cloud.pex.grpc.server.registry import PexS3Registry
|
|
22
|
+
from dagster_cloud.pex.grpc.types import PexServerHandle
|
|
21
23
|
from dagster_cloud.workspace.user_code_launcher.utils import get_grpc_server_env
|
|
22
24
|
|
|
23
|
-
from ..types import PexServerHandle
|
|
24
|
-
from .registry import PexS3Registry
|
|
25
|
-
|
|
26
25
|
logger = logging.getLogger("dagster.multipex")
|
|
27
26
|
|
|
28
27
|
|
|
@@ -28,7 +28,11 @@ def _download_from_s3(filename: str, local_filepath: str):
|
|
|
28
28
|
|
|
29
29
|
config = Config(retries={"max_attempts": 3, "mode": "standard"})
|
|
30
30
|
|
|
31
|
-
s3 = boto3.client(
|
|
31
|
+
s3 = boto3.client(
|
|
32
|
+
"s3",
|
|
33
|
+
region_name=os.getenv("DAGSTER_CLOUD_SERVERLESS_REGION", "us-west-2"),
|
|
34
|
+
config=config,
|
|
35
|
+
)
|
|
32
36
|
|
|
33
37
|
# TODO: move the bucket and prefix to pex_metdata
|
|
34
38
|
s3_bucket_name = os.environ["DAGSTER_CLOUD_SERVERLESS_STORAGE_S3_BUCKET"]
|
|
@@ -22,12 +22,13 @@ from dagster._serdes import deserialize_value, serialize_value
|
|
|
22
22
|
from dagster._utils.error import SerializableErrorInfo, serializable_error_info_from_exc_info
|
|
23
23
|
from grpc_health.v1 import health, health_pb2, health_pb2_grpc
|
|
24
24
|
|
|
25
|
-
from
|
|
26
|
-
from
|
|
25
|
+
from dagster_cloud.pex.grpc.__generated__ import multi_pex_api_pb2
|
|
26
|
+
from dagster_cloud.pex.grpc.__generated__.multi_pex_api_pb2_grpc import (
|
|
27
27
|
MultiPexApiServicer,
|
|
28
28
|
add_MultiPexApiServicer_to_server,
|
|
29
29
|
)
|
|
30
|
-
from
|
|
30
|
+
from dagster_cloud.pex.grpc.server.manager import MultiPexManager
|
|
31
|
+
from dagster_cloud.pex.grpc.types import (
|
|
31
32
|
CreatePexServerArgs,
|
|
32
33
|
CreatePexServerResponse,
|
|
33
34
|
GetCrashedPexServersArgs,
|
|
@@ -38,7 +39,6 @@ from ..types import (
|
|
|
38
39
|
ShutdownPexServerArgs,
|
|
39
40
|
ShutdownPexServerResponse,
|
|
40
41
|
)
|
|
41
|
-
from .manager import MultiPexManager
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
class MultiPexApiServer(MultiPexApiServicer):
|
|
@@ -1 +1 @@
|
|
|
1
|
-
from .loader import DagsterCloudSecretsLoader as DagsterCloudSecretsLoader
|
|
1
|
+
from dagster_cloud.secrets.loader import DagsterCloudSecretsLoader as DagsterCloudSecretsLoader
|
|
@@ -1 +1 @@
|
|
|
1
|
-
from .io_manager import serverless_io_manager as serverless_io_manager
|
|
1
|
+
from dagster_cloud.serverless.io_manager import serverless_io_manager as serverless_io_manager
|
|
@@ -47,7 +47,10 @@ class PickledObjectServerlessIOManager(UPathIOManager):
|
|
|
47
47
|
self._boto_session_expiration.tzinfo
|
|
48
48
|
) + datetime.timedelta(minutes=5):
|
|
49
49
|
self._boto_session, self._boto_session_expiration = self._refresh_boto_session()
|
|
50
|
-
return self._boto_session.client(
|
|
50
|
+
return self._boto_session.client(
|
|
51
|
+
"s3",
|
|
52
|
+
region_name=os.getenv("DAGSTER_CLOUD_SERVERLESS_REGION", "us-west-2"),
|
|
53
|
+
)
|
|
51
54
|
|
|
52
55
|
def load_from_path(self, context: InputContext, path: UPath) -> Any:
|
|
53
56
|
try:
|
|
@@ -68,7 +68,7 @@ if TYPE_CHECKING:
|
|
|
68
68
|
DEFAULT_RUN_SCOPED_EVENT_TAILER_OFFSET = 20000
|
|
69
69
|
|
|
70
70
|
|
|
71
|
-
from .queries import (
|
|
71
|
+
from dagster_cloud.storage.event_logs.queries import (
|
|
72
72
|
ADD_DYNAMIC_PARTITIONS_MUTATION,
|
|
73
73
|
CHECK_CONCURRENCY_CLAIM_QUERY,
|
|
74
74
|
CLAIM_CONCURRENCY_SLOT_MUTATION,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
from .storage import GraphQLRunStorage as GraphQLRunStorage
|
|
1
|
+
from dagster_cloud.storage.runs.storage import GraphQLRunStorage as GraphQLRunStorage
|
|
@@ -36,7 +36,7 @@ from dagster._utils.merger import merge_dicts
|
|
|
36
36
|
from dagster_cloud_cli.core.errors import DagsterCloudAgentServerError
|
|
37
37
|
from typing_extensions import Self
|
|
38
38
|
|
|
39
|
-
from .queries import (
|
|
39
|
+
from dagster_cloud.storage.runs.queries import (
|
|
40
40
|
ADD_BACKFILL_MUTATION,
|
|
41
41
|
ADD_DAEMON_HEARTBEAT_MUTATION,
|
|
42
42
|
ADD_EXECUTION_PLAN_SNAPSHOT_MUTATION,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
from .storage import GraphQLScheduleStorage as GraphQLScheduleStorage
|
|
1
|
+
from dagster_cloud.storage.schedules.storage import GraphQLScheduleStorage as GraphQLScheduleStorage
|
dagster_cloud/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.11.
|
|
1
|
+
__version__ = "1.11.13"
|
|
@@ -13,12 +13,12 @@ from dagster import (
|
|
|
13
13
|
)
|
|
14
14
|
from dagster._config import EvaluationError, StringSource, validate_config
|
|
15
15
|
|
|
16
|
-
from .docker import SHARED_DOCKER_CONFIG
|
|
17
|
-
from .ecs import (
|
|
16
|
+
from dagster_cloud.workspace.config_schema.docker import SHARED_DOCKER_CONFIG
|
|
17
|
+
from dagster_cloud.workspace.config_schema.ecs import (
|
|
18
18
|
ECS_CONTAINER_CONTEXT_CONFIG as ECS_CONTAINER_CONTEXT_CONFIG,
|
|
19
19
|
SHARED_ECS_CONFIG as SHARED_ECS_CONFIG,
|
|
20
20
|
)
|
|
21
|
-
from .kubernetes import SHARED_K8S_CONFIG
|
|
21
|
+
from dagster_cloud.workspace.config_schema.kubernetes import SHARED_K8S_CONFIG
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
def validate_workspace_location(workspace_location) -> Optional[list[str]]:
|
|
@@ -28,19 +28,20 @@ from typing_extensions import Self
|
|
|
28
28
|
from dagster_cloud.api.dagster_cloud_api import UserCodeDeploymentType
|
|
29
29
|
from dagster_cloud.execution.monitoring import CloudContainerResourceLimits
|
|
30
30
|
from dagster_cloud.storage.tags import PEX_METADATA_TAG
|
|
31
|
-
from dagster_cloud.workspace.
|
|
32
|
-
from dagster_cloud.workspace.
|
|
33
|
-
|
|
34
|
-
from ..config_schema.docker import SHARED_DOCKER_CONFIG
|
|
35
|
-
from ..user_code_launcher import (
|
|
31
|
+
from dagster_cloud.workspace.config_schema.docker import SHARED_DOCKER_CONFIG
|
|
32
|
+
from dagster_cloud.workspace.docker.utils import unique_docker_resource_name
|
|
33
|
+
from dagster_cloud.workspace.user_code_launcher import (
|
|
36
34
|
DEFAULT_SERVER_PROCESS_STARTUP_TIMEOUT,
|
|
37
35
|
SHARED_USER_CODE_LAUNCHER_CONFIG,
|
|
38
36
|
DagsterCloudGrpcServer,
|
|
39
37
|
DagsterCloudUserCodeLauncher,
|
|
40
38
|
ServerEndpoint,
|
|
41
39
|
)
|
|
42
|
-
from
|
|
43
|
-
from .utils import
|
|
40
|
+
from dagster_cloud.workspace.user_code_launcher.user_code_launcher import UserCodeLauncherEntry
|
|
41
|
+
from dagster_cloud.workspace.user_code_launcher.utils import (
|
|
42
|
+
deterministic_label_for_location,
|
|
43
|
+
get_grpc_server_env,
|
|
44
|
+
)
|
|
44
45
|
|
|
45
46
|
GRPC_SERVER_LABEL = "dagster_grpc_server"
|
|
46
47
|
MULTIPEX_SERVER_LABEL = "dagster_multipex_server"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
from .launcher import EcsUserCodeLauncher as EcsUserCodeLauncher
|
|
1
|
+
from dagster_cloud.workspace.ecs.launcher import EcsUserCodeLauncher as EcsUserCodeLauncher
|
|
@@ -31,9 +31,15 @@ from dagster_cloud.workspace.ecs.client import (
|
|
|
31
31
|
DEFAULT_ECS_TIMEOUT,
|
|
32
32
|
ECS_EXEC_LINUX_PARAMETERS,
|
|
33
33
|
Client,
|
|
34
|
+
get_debug_ecs_prompt,
|
|
34
35
|
)
|
|
36
|
+
from dagster_cloud.workspace.ecs.run_launcher import CloudEcsRunLauncher
|
|
35
37
|
from dagster_cloud.workspace.ecs.service import Service
|
|
36
|
-
from dagster_cloud.workspace.ecs.utils import
|
|
38
|
+
from dagster_cloud.workspace.ecs.utils import (
|
|
39
|
+
get_ecs_human_readable_label,
|
|
40
|
+
get_server_task_definition_family,
|
|
41
|
+
unique_ecs_resource_name,
|
|
42
|
+
)
|
|
37
43
|
from dagster_cloud.workspace.user_code_launcher import (
|
|
38
44
|
DEFAULT_SERVER_PROCESS_STARTUP_TIMEOUT,
|
|
39
45
|
SHARED_USER_CODE_LAUNCHER_CONFIG,
|
|
@@ -50,10 +56,6 @@ from dagster_cloud.workspace.user_code_launcher.utils import (
|
|
|
50
56
|
get_grpc_server_env,
|
|
51
57
|
)
|
|
52
58
|
|
|
53
|
-
from .client import get_debug_ecs_prompt
|
|
54
|
-
from .run_launcher import CloudEcsRunLauncher
|
|
55
|
-
from .utils import get_server_task_definition_family
|
|
56
|
-
|
|
57
59
|
EcsServerHandleType = Service
|
|
58
60
|
|
|
59
61
|
CONTAINER_NAME = "dagster"
|
|
@@ -2,8 +2,7 @@ import dagster._check as check
|
|
|
2
2
|
from dagster_aws.ecs import EcsRunLauncher
|
|
3
3
|
|
|
4
4
|
from dagster_cloud.instance import DagsterCloudAgentInstance
|
|
5
|
-
|
|
6
|
-
from .utils import get_run_task_definition_family
|
|
5
|
+
from dagster_cloud.workspace.ecs.utils import get_run_task_definition_family
|
|
7
6
|
|
|
8
7
|
|
|
9
8
|
class CloudEcsRunLauncher(EcsRunLauncher[DagsterCloudAgentInstance]):
|
|
@@ -5,7 +5,10 @@ from typing import Optional
|
|
|
5
5
|
from dagster._core.remote_origin import RemoteJobOrigin
|
|
6
6
|
from dagster_aws.ecs.utils import sanitize_family
|
|
7
7
|
|
|
8
|
-
from
|
|
8
|
+
from dagster_cloud.workspace.user_code_launcher.utils import (
|
|
9
|
+
get_human_readable_label,
|
|
10
|
+
unique_resource_name,
|
|
11
|
+
)
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
def unique_ecs_resource_name(deployment_name, location_name):
|
|
@@ -1 +1 @@
|
|
|
1
|
-
from .launcher import K8sUserCodeLauncher as K8sUserCodeLauncher
|
|
1
|
+
from dagster_cloud.workspace.kubernetes.launcher import K8sUserCodeLauncher as K8sUserCodeLauncher
|
|
@@ -33,17 +33,7 @@ from dagster_cloud.api.dagster_cloud_api import UserCodeDeploymentType
|
|
|
33
33
|
from dagster_cloud.constants import RESERVED_ENV_VAR_NAMES
|
|
34
34
|
from dagster_cloud.execution.cloud_run_launcher.k8s import CloudK8sRunLauncher
|
|
35
35
|
from dagster_cloud.execution.monitoring import CloudContainerResourceLimits
|
|
36
|
-
|
|
37
|
-
from ..user_code_launcher import (
|
|
38
|
-
DEFAULT_SERVER_PROCESS_STARTUP_TIMEOUT,
|
|
39
|
-
SHARED_USER_CODE_LAUNCHER_CONFIG,
|
|
40
|
-
DagsterCloudGrpcServer,
|
|
41
|
-
DagsterCloudUserCodeLauncher,
|
|
42
|
-
ServerEndpoint,
|
|
43
|
-
UserCodeLauncherEntry,
|
|
44
|
-
)
|
|
45
|
-
from ..user_code_launcher.utils import deterministic_label_for_location
|
|
46
|
-
from .utils import (
|
|
36
|
+
from dagster_cloud.workspace.kubernetes.utils import (
|
|
47
37
|
SERVICE_PORT,
|
|
48
38
|
construct_code_location_deployment,
|
|
49
39
|
construct_code_location_service,
|
|
@@ -51,11 +41,20 @@ from .utils import (
|
|
|
51
41
|
unique_k8s_resource_name,
|
|
52
42
|
wait_for_deployment_complete,
|
|
53
43
|
)
|
|
44
|
+
from dagster_cloud.workspace.user_code_launcher import (
|
|
45
|
+
DEFAULT_SERVER_PROCESS_STARTUP_TIMEOUT,
|
|
46
|
+
SHARED_USER_CODE_LAUNCHER_CONFIG,
|
|
47
|
+
DagsterCloudGrpcServer,
|
|
48
|
+
DagsterCloudUserCodeLauncher,
|
|
49
|
+
ServerEndpoint,
|
|
50
|
+
UserCodeLauncherEntry,
|
|
51
|
+
)
|
|
52
|
+
from dagster_cloud.workspace.user_code_launcher.utils import deterministic_label_for_location
|
|
54
53
|
|
|
55
54
|
DEFAULT_DEPLOYMENT_STARTUP_TIMEOUT = 300
|
|
56
55
|
DEFAULT_IMAGE_PULL_GRACE_PERIOD = 30
|
|
57
56
|
|
|
58
|
-
from
|
|
57
|
+
from dagster_cloud.workspace.config_schema.kubernetes import SHARED_K8S_CONFIG
|
|
59
58
|
|
|
60
59
|
|
|
61
60
|
class K8sHandle(NamedTuple):
|
|
@@ -11,8 +11,7 @@ from dagster_k8s.models import k8s_model_from_dict
|
|
|
11
11
|
from kubernetes import client
|
|
12
12
|
|
|
13
13
|
from dagster_cloud.instance import DagsterCloudAgentInstance
|
|
14
|
-
|
|
15
|
-
from ..user_code_launcher.utils import (
|
|
14
|
+
from dagster_cloud.workspace.user_code_launcher.utils import (
|
|
16
15
|
deterministic_label_for_location,
|
|
17
16
|
get_grpc_server_env,
|
|
18
17
|
get_human_readable_label,
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
from .process import
|
|
2
|
-
|
|
1
|
+
from dagster_cloud.workspace.user_code_launcher.process import (
|
|
2
|
+
ProcessUserCodeLauncher as ProcessUserCodeLauncher,
|
|
3
|
+
)
|
|
4
|
+
from dagster_cloud.workspace.user_code_launcher.user_code_launcher import (
|
|
3
5
|
DEFAULT_SERVER_PROCESS_STARTUP_TIMEOUT as DEFAULT_SERVER_PROCESS_STARTUP_TIMEOUT,
|
|
4
6
|
DEFAULT_SERVER_TTL_SECONDS as DEFAULT_SERVER_TTL_SECONDS,
|
|
5
7
|
SHARED_USER_CODE_LAUNCHER_CONFIG as SHARED_USER_CODE_LAUNCHER_CONFIG,
|
|
@@ -8,7 +10,7 @@ from .user_code_launcher import (
|
|
|
8
10
|
ServerEndpoint as ServerEndpoint,
|
|
9
11
|
UserCodeLauncherEntry as UserCodeLauncherEntry,
|
|
10
12
|
)
|
|
11
|
-
from .utils import (
|
|
13
|
+
from dagster_cloud.workspace.user_code_launcher.utils import (
|
|
12
14
|
deterministic_label_for_location as deterministic_label_for_location,
|
|
13
15
|
get_human_readable_label as get_human_readable_label,
|
|
14
16
|
unique_resource_name as unique_resource_name,
|
|
@@ -26,9 +26,7 @@ from dagster_cloud.api.dagster_cloud_api import UserCodeDeploymentType
|
|
|
26
26
|
from dagster_cloud.execution.cloud_run_launcher.process import CloudProcessRunLauncher
|
|
27
27
|
from dagster_cloud.execution.monitoring import CloudContainerResourceLimits
|
|
28
28
|
from dagster_cloud.pex.grpc import MultiPexGrpcClient
|
|
29
|
-
from dagster_cloud.workspace.user_code_launcher.
|
|
30
|
-
|
|
31
|
-
from .user_code_launcher import (
|
|
29
|
+
from dagster_cloud.workspace.user_code_launcher.user_code_launcher import (
|
|
32
30
|
DEFAULT_SERVER_PROCESS_STARTUP_TIMEOUT,
|
|
33
31
|
SHARED_USER_CODE_LAUNCHER_CONFIG,
|
|
34
32
|
DagsterCloudGrpcServer,
|
|
@@ -36,6 +34,7 @@ from .user_code_launcher import (
|
|
|
36
34
|
ServerEndpoint,
|
|
37
35
|
UserCodeLauncherEntry,
|
|
38
36
|
)
|
|
37
|
+
from dagster_cloud.workspace.user_code_launcher.utils import get_grpc_server_env
|
|
39
38
|
|
|
40
39
|
CLEANUP_ZOMBIE_PROCESSES_INTERVAL = 5
|
|
41
40
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dagster-cloud
|
|
3
|
-
Version: 1.11.
|
|
3
|
+
Version: 1.11.13
|
|
4
4
|
Author-email: Elementl <support@elementl.com>
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://dagster.io/cloud
|
|
@@ -28,9 +28,9 @@ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
|
28
28
|
Classifier: Operating System :: OS Independent
|
|
29
29
|
Requires-Python: <3.14,>=3.9
|
|
30
30
|
Description-Content-Type: text/markdown
|
|
31
|
-
Requires-Dist: dagster==1.11.
|
|
32
|
-
Requires-Dist: dagster-shared==1.11.
|
|
33
|
-
Requires-Dist: dagster-cloud-cli==1.11.
|
|
31
|
+
Requires-Dist: dagster==1.11.13
|
|
32
|
+
Requires-Dist: dagster-shared==1.11.13
|
|
33
|
+
Requires-Dist: dagster-cloud-cli==1.11.13
|
|
34
34
|
Requires-Dist: opentelemetry-api<2,>=1.27.0
|
|
35
35
|
Requires-Dist: opentelemetry-sdk<2,>=1.27.0
|
|
36
36
|
Requires-Dist: opentelemetry-exporter-otlp-proto-grpc<2,>=1.27.0
|
|
@@ -65,12 +65,12 @@ Provides-Extra: insights
|
|
|
65
65
|
Requires-Dist: pyarrow; extra == "insights"
|
|
66
66
|
Provides-Extra: docker
|
|
67
67
|
Requires-Dist: docker; extra == "docker"
|
|
68
|
-
Requires-Dist: dagster-docker==0.27.
|
|
68
|
+
Requires-Dist: dagster-docker==0.27.13; extra == "docker"
|
|
69
69
|
Provides-Extra: kubernetes
|
|
70
70
|
Requires-Dist: kubernetes; extra == "kubernetes"
|
|
71
|
-
Requires-Dist: dagster-k8s==0.27.
|
|
71
|
+
Requires-Dist: dagster-k8s==0.27.13; extra == "kubernetes"
|
|
72
72
|
Provides-Extra: ecs
|
|
73
|
-
Requires-Dist: dagster-aws==0.27.
|
|
73
|
+
Requires-Dist: dagster-aws==0.27.13; extra == "ecs"
|
|
74
74
|
Requires-Dist: boto3; extra == "ecs"
|
|
75
75
|
Provides-Extra: sandbox
|
|
76
76
|
Requires-Dist: supervisor; extra == "sandbox"
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
dagster_cloud/__init__.py,sha256=
|
|
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=jKOyS3d70rN4ZhFXUYvjOWUh-im_jL98uaO5gRIWA68,24
|
|
5
5
|
dagster_cloud/agent/__init__.py,sha256=_erVyIrxuHUiyNerwX8vNZcKZN8NAloTEkPq8vPZ3MI,811
|
|
6
|
-
dagster_cloud/agent/dagster_cloud_agent.py,sha256=
|
|
6
|
+
dagster_cloud/agent/dagster_cloud_agent.py,sha256=DRvOePiP-teckSat2iWQ1HDXmkOHhUWzX-a-mYZ8uTk,57143
|
|
7
7
|
dagster_cloud/agent/queries.py,sha256=iI84GQ1Zxt5ryo6M1ELIaIae-gwUY14QPPMUeiFK97o,1837
|
|
8
8
|
dagster_cloud/agent/cli/__init__.py,sha256=rGbeQJ2Ap95wPYQuk5XbyHAfP9cs-XPUSmuVM_k278k,9084
|
|
9
9
|
dagster_cloud/agent/instrumentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -11,8 +11,8 @@ dagster_cloud/agent/instrumentation/constants.py,sha256=X4GG4adYsOAde_kff89LtErM
|
|
|
11
11
|
dagster_cloud/agent/instrumentation/run_launch.py,sha256=TmvBBymQ-Iniqbkm16jrACOHQjQLSB-kmw0g6gUccqU,750
|
|
12
12
|
dagster_cloud/agent/instrumentation/schedule.py,sha256=DRhJ_2PwGeaeOZ1ey9NbSsAplY_EJS1supcrljtc858,1304
|
|
13
13
|
dagster_cloud/agent/instrumentation/sensor.py,sha256=wGpe3XHyXx4PWlXEa7CNQq3f7-IxWdOgTLEJH2FRnGk,1290
|
|
14
|
-
dagster_cloud/anomaly_detection/__init__.py,sha256=
|
|
15
|
-
dagster_cloud/anomaly_detection/defs.py,sha256=
|
|
14
|
+
dagster_cloud/anomaly_detection/__init__.py,sha256=5sFqtRv6jEvUGN3-oXmSlUZ_dPj_L29SoVFBFuHkMvU,341
|
|
15
|
+
dagster_cloud/anomaly_detection/defs.py,sha256=_CgpMed-B3kAOukSXcbR7hm6n3tJIoC4TvnZGYaUTTo,10162
|
|
16
16
|
dagster_cloud/anomaly_detection/mutation.py,sha256=TDMwkfWGXKF0609FL8T1NgnXgtIoSi8VpjSQ3y89C8Y,410
|
|
17
17
|
dagster_cloud/anomaly_detection/types.py,sha256=9kJrJOT0Y57fk_4mGerNbwFJLNglI0XAP6NBW0hHuYE,2239
|
|
18
18
|
dagster_cloud/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -20,22 +20,22 @@ dagster_cloud/api/dagster_cloud_api.py,sha256=6ge6WX8SCRKu9wTD0YgTBvCHgPN1_DFrIH
|
|
|
20
20
|
dagster_cloud/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
dagster_cloud/auth/__init__.py,sha256=rUuAWah3YD-0tatQPFlmLNJpsGQ9ZRj7sUOSTrnf0zQ,248
|
|
22
22
|
dagster_cloud/auth/constants.py,sha256=zFhKSUBkBKz5_eSTCp5FV8K_HFYJRGHDby-xC7KE4bo,1808
|
|
23
|
-
dagster_cloud/batching/__init__.py,sha256=
|
|
23
|
+
dagster_cloud/batching/__init__.py,sha256=psHEDtSs1gb-nmWtbAq1pp8Lip5PvTz_wxK-u_0babA,62
|
|
24
24
|
dagster_cloud/batching/batcher.py,sha256=kt9F-WdMnCJstCJFuHqagG_eHFTWjlfRQdhE-Cc9Hvw,7796
|
|
25
|
-
dagster_cloud/dagster_insights/__init__.py,sha256=
|
|
25
|
+
dagster_cloud/dagster_insights/__init__.py,sha256=s8PrSxja4JgQtXz3tuzqPH3oqhm5OMo-97qDBpeQ6LA,2079
|
|
26
26
|
dagster_cloud/dagster_insights/errors.py,sha256=_GrycqbxxqHSnxKveff-sJz9L-UHi4iRg-U_rGAEss8,138
|
|
27
27
|
dagster_cloud/dagster_insights/insights_utils.py,sha256=B7VwG2Gx8mpkcbkNJ1YaOypgeCaA3d3Kfc0Eves-OFg,4658
|
|
28
28
|
dagster_cloud/dagster_insights/metrics_utils.py,sha256=bl19JekBcDLnumb1KSOSKQ4t7deP3FGAVYbqqpVfbRk,3535
|
|
29
29
|
dagster_cloud/dagster_insights/query.py,sha256=BB-JgzCZl-lLHPP8irF3p6X6hkLoni2HpBS4iviibqU,1403
|
|
30
30
|
dagster_cloud/dagster_insights/bigquery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
31
|
dagster_cloud/dagster_insights/bigquery/bigquery_utils.py,sha256=hcE0yyU_tFBYVMFs3_7VgDAfu6sIYhD0qmEzWVodQ14,824
|
|
32
|
-
dagster_cloud/dagster_insights/bigquery/dbt_wrapper.py,sha256=
|
|
33
|
-
dagster_cloud/dagster_insights/bigquery/insights_bigquery_resource.py,sha256=
|
|
32
|
+
dagster_cloud/dagster_insights/bigquery/dbt_wrapper.py,sha256=qARplZMxCN_Kga1iaLiPZgVghuY-Zki9wn9Dpc89Y3w,9405
|
|
33
|
+
dagster_cloud/dagster_insights/bigquery/insights_bigquery_resource.py,sha256=NOqtl9qiwT6HZOR-Knzsc5wF7n6G9ZavWQv9jtdPljI,3250
|
|
34
34
|
dagster_cloud/dagster_insights/snowflake/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
dagster_cloud/dagster_insights/snowflake/dagster_snowflake_insights.py,sha256=
|
|
36
|
-
dagster_cloud/dagster_insights/snowflake/dbt_wrapper.py,sha256=
|
|
37
|
-
dagster_cloud/dagster_insights/snowflake/definitions.py,sha256=
|
|
38
|
-
dagster_cloud/dagster_insights/snowflake/insights_snowflake_resource.py,sha256=
|
|
35
|
+
dagster_cloud/dagster_insights/snowflake/dagster_snowflake_insights.py,sha256=Rk9sJ2-qLZ863zbLdq-NQvQqAObgdac22rvO_1_-sGY,3156
|
|
36
|
+
dagster_cloud/dagster_insights/snowflake/dbt_wrapper.py,sha256=SCg6K2w4boYkykokeV1T4cWEQqOdRCTDX6DEJZAWoFE,5606
|
|
37
|
+
dagster_cloud/dagster_insights/snowflake/definitions.py,sha256=pB-WKPUVH3_mMLcSaNb1HykYFT69F2FvYIj5vpaj6J4,8143
|
|
38
|
+
dagster_cloud/dagster_insights/snowflake/insights_snowflake_resource.py,sha256=kx8zCXWPu1-xUBnK9aKMi7tcsrkZ9644O_jkdkfZBA4,10727
|
|
39
39
|
dagster_cloud/dagster_insights/snowflake/snowflake_utils.py,sha256=JLxM1wNIdwtJj3oBIdGfPtaksdaFUPwWMJJRfEQd2mw,3808
|
|
40
40
|
dagster_cloud/definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
dagster_cloud/definitions/job_selection.py,sha256=HsTU_k2AUON1mVi2mqkDpCEOiy34ANa2OOMozSrDSeQ,1022
|
|
@@ -45,8 +45,8 @@ dagster_cloud/execution/cloud_run_launcher/k8s.py,sha256=BWqq74rzRyEfziDut958cus
|
|
|
45
45
|
dagster_cloud/execution/cloud_run_launcher/process.py,sha256=eYxvzcaJbqYKjHcXMUUXvTAraygnlHiitVBON5utxkk,3287
|
|
46
46
|
dagster_cloud/execution/monitoring/__init__.py,sha256=2_o2UjeEPvfSpnOb0zky3ZQs-G9VHABAXzjvfMnAh8A,17782
|
|
47
47
|
dagster_cloud/execution/utils/__init__.py,sha256=EfU-tK5-ScZYLF_zmWqUgIrmLsb9DDHWFN-CSg3BSXY,254
|
|
48
|
-
dagster_cloud/execution/utils/process.py,sha256=
|
|
49
|
-
dagster_cloud/instance/__init__.py,sha256=
|
|
48
|
+
dagster_cloud/execution/utils/process.py,sha256=Er6FKMdlGBjpOHDEIkukZf4-TiZ3Xi_iqurfxkOozGM,911
|
|
49
|
+
dagster_cloud/instance/__init__.py,sha256=GUj32KsuwxIwf0B-J2Fl7VQRzuBZOROsI8BODZXsw2o,26252
|
|
50
50
|
dagster_cloud/instrumentation/__init__.py,sha256=OKaT4qkwQNmCFdKveVrgB7JIo5sZD1F1rutQKdozK_4,886
|
|
51
51
|
dagster_cloud/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
52
|
dagster_cloud/metadata/source_code.py,sha256=yCUfD6V-wR2s4AUrmVpX_Dd7Gln7SYbtpuEpAH71J1I,5952
|
|
@@ -56,7 +56,7 @@ dagster_cloud/opentelemetry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
56
56
|
dagster_cloud/opentelemetry/controller.py,sha256=hqZcqN8WvPOSgncFear2ikwf36zGrdebak2VENyrxjA,13069
|
|
57
57
|
dagster_cloud/opentelemetry/enum.py,sha256=ls6J0fde00WP9vYdFNUOQijbTBGsb7kRD0lar6ImtLk,1686
|
|
58
58
|
dagster_cloud/opentelemetry/config/__init__.py,sha256=Aegfue6NedLV64yCAKQtV3uDjJJLjWKeg53F7SQ46zs,2868
|
|
59
|
-
dagster_cloud/opentelemetry/config/exporter.py,sha256=
|
|
59
|
+
dagster_cloud/opentelemetry/config/exporter.py,sha256=zznpS4PaBJ5RrvJiRZH-DBi0k0tMK7_xsUbrmbpsyxM,3551
|
|
60
60
|
dagster_cloud/opentelemetry/config/log_record_processor.py,sha256=nCeOwxHUlWaes0MHUFvkRlofa5w0_alHpuFYQhLuccY,1631
|
|
61
61
|
dagster_cloud/opentelemetry/config/logging_handler.py,sha256=POuO_Q_mcsXm9bIdIbg_oEvNswISgkbuYx6R2XiNykw,378
|
|
62
62
|
dagster_cloud/opentelemetry/config/meter_provider.py,sha256=CDNMaO-CDOWM8MwY6PG0FWSM326QiK1G4pLUtal_2Ew,242
|
|
@@ -68,67 +68,67 @@ dagster_cloud/opentelemetry/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQ
|
|
|
68
68
|
dagster_cloud/opentelemetry/metrics/meter.py,sha256=g8mFN2uESWE1aHZcu4GqdBJaXwx6Hlm0y_x2GfghXf8,4447
|
|
69
69
|
dagster_cloud/opentelemetry/observers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
70
|
dagster_cloud/opentelemetry/observers/dagster_exception_handler.py,sha256=dXoVhsm1Vt_14Uno7WvW0-_USv-n3-CD3A6hmJ7dXts,1770
|
|
71
|
-
dagster_cloud/opentelemetry/observers/execution_observer.py,sha256=
|
|
71
|
+
dagster_cloud/opentelemetry/observers/execution_observer.py,sha256=ZpD74KGUm6f_XnP5sJVgl8-u_pX8p-98PmlhnN0V9KM,6287
|
|
72
72
|
dagster_cloud/pex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
|
-
dagster_cloud/pex/grpc/__init__.py,sha256=
|
|
74
|
-
dagster_cloud/pex/grpc/client.py,sha256=
|
|
73
|
+
dagster_cloud/pex/grpc/__init__.py,sha256=hWUUK6Rz4Yb-eqWsQlcbN_u5T5a8E9XrS28_i-UIFCw,371
|
|
74
|
+
dagster_cloud/pex/grpc/client.py,sha256=dzHY9GTpMeJmILiA1g-F8zTse65dlSjXOO0oGLL9i84,5356
|
|
75
75
|
dagster_cloud/pex/grpc/compile.py,sha256=MYtrKFY4WDUTJWEf8udFzhqAZqEKkLx9SK14UPsCUhA,3780
|
|
76
76
|
dagster_cloud/pex/grpc/types.py,sha256=2EcmurOIiidoxKF-YclX6VkkYFJVPiadUIYnem3UAP4,3355
|
|
77
77
|
dagster_cloud/pex/grpc/__generated__/__init__.py,sha256=oEuGZ7LJL3L6T11qpdOQhVwWi3ej-k99ZTUe8UytWYc,285
|
|
78
78
|
dagster_cloud/pex/grpc/__generated__/multi_pex_api_pb2.py,sha256=5WTKXp6mq4bREnT8vcvPxgDZ39kkfLiU2Dd_xh0wZxY,3907
|
|
79
79
|
dagster_cloud/pex/grpc/__generated__/multi_pex_api_pb2.pyi,sha256=RdlI8IAu7NxLB0LE3lGGtFMTCfiBxFWPjBwtYvFiiaY,5922
|
|
80
80
|
dagster_cloud/pex/grpc/__generated__/multi_pex_api_pb2_grpc.py,sha256=cCwuUnJ1UH3NFLebv1EZG_TfsV8n9IF9A-WTsfXIeZk,9301
|
|
81
|
-
dagster_cloud/pex/grpc/server/__init__.py,sha256=
|
|
82
|
-
dagster_cloud/pex/grpc/server/manager.py,sha256=
|
|
83
|
-
dagster_cloud/pex/grpc/server/registry.py,sha256=
|
|
84
|
-
dagster_cloud/pex/grpc/server/server.py,sha256=
|
|
85
|
-
dagster_cloud/pex/grpc/server/cli/__init__.py,sha256=
|
|
86
|
-
dagster_cloud/secrets/__init__.py,sha256=
|
|
81
|
+
dagster_cloud/pex/grpc/server/__init__.py,sha256=OKZqM9NdiRBUOUtWRdWG1_kaS13ELJJ5yHTHUc375ns,177
|
|
82
|
+
dagster_cloud/pex/grpc/server/manager.py,sha256=I1SJXoWKHNmgFPXr7YKtk-UkXOqvKjqxMHiNWccHRog,18702
|
|
83
|
+
dagster_cloud/pex/grpc/server/registry.py,sha256=PzkFlzcPA9HEFlkMFNX68lDj7Eh3m_P4cF3gNyabN5s,12899
|
|
84
|
+
dagster_cloud/pex/grpc/server/server.py,sha256=rf7A2p5KAKWu0KD2uclsPlly1_yNjZDUlJMHb2f3E6U,16378
|
|
85
|
+
dagster_cloud/pex/grpc/server/cli/__init__.py,sha256=Se6sC8sSWlkgO_RdD4KPO-0xNua3IwXIeM9b_u10Hlo,2523
|
|
86
|
+
dagster_cloud/secrets/__init__.py,sha256=usa0GjXl_T1p8oRJfFcAChLohJGPt0YaR2PJbhd4vx4,96
|
|
87
87
|
dagster_cloud/secrets/loader.py,sha256=gr5m3Ih7fsg8DBSKCmtHCUCpgzNxBOera6B3ONLYKWo,1661
|
|
88
|
-
dagster_cloud/serverless/__init__.py,sha256=
|
|
89
|
-
dagster_cloud/serverless/io_manager.py,sha256=
|
|
88
|
+
dagster_cloud/serverless/__init__.py,sha256=xB_3Z7BeTIOPjyaonbbEBSYw80MT9Cigr9jabvckyzI,95
|
|
89
|
+
dagster_cloud/serverless/io_manager.py,sha256=ms9DzZ9Sqs83TOFV4gAnzBht4ufIzVs0Oyl6FCw3pEI,4054
|
|
90
90
|
dagster_cloud/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
91
|
dagster_cloud/storage/client.py,sha256=jsqlQehNImOygYEAq0NoEVlbCn5EbIS0VZJabuVtxL8,2992
|
|
92
92
|
dagster_cloud/storage/tags.py,sha256=YeWSWgpguqvpndFGMM0W7gORn0F8P3CDcanElE7n2Vo,2414
|
|
93
|
-
dagster_cloud/storage/compute_logs/__init__.py,sha256=
|
|
93
|
+
dagster_cloud/storage/compute_logs/__init__.py,sha256=9TWHkWqOmqEQz9HM-brZwYOMtD6KqP5oeyLLcuDuYa0,125
|
|
94
94
|
dagster_cloud/storage/compute_logs/compute_log_manager.py,sha256=OBNuGj0PECWmnAfbayFtRixztOcqaK-IGmgOD0AokfY,4857
|
|
95
|
-
dagster_cloud/storage/defs_state/__init__.py,sha256=
|
|
95
|
+
dagster_cloud/storage/defs_state/__init__.py,sha256=eGmQiGjhAYl9FWsO1YcGcf8k1EpZi0EgtWPWWNH3VGE,113
|
|
96
96
|
dagster_cloud/storage/defs_state/queries.py,sha256=UICxqqWH1gCpE_YR7TedxanES2gZ_7dR00y6KR8HWQA,365
|
|
97
97
|
dagster_cloud/storage/defs_state/storage.py,sha256=V-YO63i8DBGCiCj5Ptu9U12jOMBCxQCvaF77YQWJrA8,4006
|
|
98
|
-
dagster_cloud/storage/event_logs/__init__.py,sha256=
|
|
98
|
+
dagster_cloud/storage/event_logs/__init__.py,sha256=kZotTbwh4KGH6Oe7PFXj1PMg9ji85hOOX4NcYHK6JJY,111
|
|
99
99
|
dagster_cloud/storage/event_logs/queries.py,sha256=sgkHhHX-0Vr9WukcRjbuGSH8vjC9razSNnwqXBrihX8,19924
|
|
100
|
-
dagster_cloud/storage/event_logs/storage.py,sha256=
|
|
100
|
+
dagster_cloud/storage/event_logs/storage.py,sha256=C71e0PJrrqHgyqhzmMY6LpSkf8zLc6Ulp5J3yhsK-i4,56470
|
|
101
101
|
dagster_cloud/storage/event_logs/utils.py,sha256=M6uvW8L-H7600bjOy5yTTealHVKKXAFBJO4dRZObTdI,3061
|
|
102
|
-
dagster_cloud/storage/runs/__init__.py,sha256=
|
|
102
|
+
dagster_cloud/storage/runs/__init__.py,sha256=aNua07DabXVkxhOvQol1Vai4Lg88a_BwuxnvKiwV6_4,86
|
|
103
103
|
dagster_cloud/storage/runs/queries.py,sha256=vJFvL5cU8iV-CqwOZUTupKJ42-LJ0FJDR113LjOqWvc,7250
|
|
104
|
-
dagster_cloud/storage/runs/storage.py,sha256=
|
|
105
|
-
dagster_cloud/storage/schedules/__init__.py,sha256=
|
|
104
|
+
dagster_cloud/storage/runs/storage.py,sha256=WjGN2LaSSLh7c_Q9uGk-AUTY03c6eYlv92RHD001M04,22504
|
|
105
|
+
dagster_cloud/storage/schedules/__init__.py,sha256=RvRDZERTOgdKIfkm1xrEIZBdZ8lM1Kotdu20BK2_Tak,101
|
|
106
106
|
dagster_cloud/storage/schedules/queries.py,sha256=TnrMvk1rCSKG_gWcxYjGg27X9ie_AVU9350NLL3OR-k,1930
|
|
107
|
-
dagster_cloud/storage/schedules/storage.py,sha256=
|
|
107
|
+
dagster_cloud/storage/schedules/storage.py,sha256=YwXY-_8-lDMW2bDMMmEm6o_5ih6Yh1hofrxh0Tqb9YY,7776
|
|
108
108
|
dagster_cloud/util/__init__.py,sha256=-rLWHQVwWr0FHyz5dDA-Ia2BRDKJvUQDm9CX3D3mw20,2609
|
|
109
109
|
dagster_cloud/util/container_resources.py,sha256=qkFiULrhvqSB4iLlL30bQpO_XjXrm5lNfMx8iFUYiR8,4693
|
|
110
110
|
dagster_cloud/util/errors.py,sha256=EazIylrZJRbPkpG6SIMqTzXY3fSKBS1pck59wXCrNZE,1638
|
|
111
111
|
dagster_cloud/workspace/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
|
-
dagster_cloud/workspace/config_schema/__init__.py,sha256=
|
|
112
|
+
dagster_cloud/workspace/config_schema/__init__.py,sha256=M83j9XNkZo6XqfnU9AiYRJilLMvRqT4JKThhHiOnxPE,12409
|
|
113
113
|
dagster_cloud/workspace/config_schema/docker.py,sha256=Xs7FDBVpIOMlWcKXrVWX_lSDgf9qpc9UpYcps1IdQDQ,967
|
|
114
114
|
dagster_cloud/workspace/config_schema/ecs.py,sha256=NKB08hsYlowORvBHCrTqmKVbF67q1XDb-40s1phI5DE,6575
|
|
115
115
|
dagster_cloud/workspace/config_schema/kubernetes.py,sha256=JIdZ5hX06hAw1lGT-5AcwZjfoKMnMj3PKjaQ9GDUL-U,5286
|
|
116
|
-
dagster_cloud/workspace/docker/__init__.py,sha256=
|
|
117
|
-
dagster_cloud/workspace/docker/utils.py,sha256=
|
|
118
|
-
dagster_cloud/workspace/ecs/__init__.py,sha256=
|
|
116
|
+
dagster_cloud/workspace/docker/__init__.py,sha256=2lFoeX45PWf6xUaVwj9p8lNEar8XzVvHd2MfjMR7C-s,15160
|
|
117
|
+
dagster_cloud/workspace/docker/utils.py,sha256=VjT2kiCTByZj9HIQIO34Ukqvb-3cqlMQe54wqmyNh9I,374
|
|
118
|
+
dagster_cloud/workspace/ecs/__init__.py,sha256=Gys8s6kBDnfi198uRflXXRshwOKW-MBEACWqR_SCY-E,92
|
|
119
119
|
dagster_cloud/workspace/ecs/client.py,sha256=9c4juhbKgzj7z0MBtEiOSOt0cYABq-c6GLXbyWX4Wic,31675
|
|
120
|
-
dagster_cloud/workspace/ecs/launcher.py,sha256=
|
|
121
|
-
dagster_cloud/workspace/ecs/run_launcher.py,sha256=
|
|
120
|
+
dagster_cloud/workspace/ecs/launcher.py,sha256=z9sasod3QFEtvQ_eVw8R1pWHLiY70MviuJAbR67E6zs,31189
|
|
121
|
+
dagster_cloud/workspace/ecs/run_launcher.py,sha256=e8Rgd3dcrHL1O_Q7UcR11JO75sxCcA8YaaOUmpk3WrU,600
|
|
122
122
|
dagster_cloud/workspace/ecs/service.py,sha256=v-puyDEg2BzHA3RJqEhH8V04bUAcrYIlPCH1SThvwWw,4126
|
|
123
|
-
dagster_cloud/workspace/ecs/utils.py,sha256=
|
|
124
|
-
dagster_cloud/workspace/kubernetes/__init__.py,sha256=
|
|
125
|
-
dagster_cloud/workspace/kubernetes/launcher.py,sha256=
|
|
126
|
-
dagster_cloud/workspace/kubernetes/utils.py,sha256=
|
|
127
|
-
dagster_cloud/workspace/user_code_launcher/__init__.py,sha256=
|
|
128
|
-
dagster_cloud/workspace/user_code_launcher/process.py,sha256=
|
|
123
|
+
dagster_cloud/workspace/ecs/utils.py,sha256=lWFk48l4a_pCIwP6bClQlb-KmqDS-Wl_8uHlbpGttUw,2990
|
|
124
|
+
dagster_cloud/workspace/kubernetes/__init__.py,sha256=Ds-wUB4LYTOHyYH3xN_QFl7J96qU-_e7gwHPllfIl2o,99
|
|
125
|
+
dagster_cloud/workspace/kubernetes/launcher.py,sha256=HSxyHMYTvJWEXa8RutImxluig5Vpw6TkAJ5uL3MwTSc,28378
|
|
126
|
+
dagster_cloud/workspace/kubernetes/utils.py,sha256=2PrxCXew-KZmluVyW9jC9z_kuPcchq4b1ONv4E5UjsM,12234
|
|
127
|
+
dagster_cloud/workspace/user_code_launcher/__init__.py,sha256=E-Izs69AHPAXD9pqd3UH46l4uKxM4Lbz7y2G4KeWzEQ,880
|
|
128
|
+
dagster_cloud/workspace/user_code_launcher/process.py,sha256=6TwjlXZzBlzyQEvmGzuVAUgxe_vCye0Q3aYkPPDAshs,14315
|
|
129
129
|
dagster_cloud/workspace/user_code_launcher/user_code_launcher.py,sha256=DqWeZ_w-h4tP2ceLyvOHWeSPM6dUnr7gY_VmuSKsEYA,102911
|
|
130
130
|
dagster_cloud/workspace/user_code_launcher/utils.py,sha256=t8Epee9MrXtRhWL-b_3avXxgMGrjLScUNWtBUUGpMCg,5285
|
|
131
|
-
dagster_cloud-1.11.
|
|
132
|
-
dagster_cloud-1.11.
|
|
133
|
-
dagster_cloud-1.11.
|
|
134
|
-
dagster_cloud-1.11.
|
|
131
|
+
dagster_cloud-1.11.13.dist-info/METADATA,sha256=dFCwQ40XWr_xYfzBiL5Txp6ZCFRFrI4i0kfd9LwkkWU,6584
|
|
132
|
+
dagster_cloud-1.11.13.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
133
|
+
dagster_cloud-1.11.13.dist-info/top_level.txt,sha256=2hMt-U33jyCgnywNrDB9Ih0EpaVmiO6dFkYcJ7Iwx4I,14
|
|
134
|
+
dagster_cloud-1.11.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|