dagster-cloud 1.8.2__py3-none-any.whl → 1.12.6__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.
Files changed (108) hide show
  1. dagster_cloud/__init__.py +3 -3
  2. dagster_cloud/agent/__init__.py +4 -4
  3. dagster_cloud/agent/cli/__init__.py +56 -17
  4. dagster_cloud/agent/dagster_cloud_agent.py +360 -172
  5. dagster_cloud/agent/instrumentation/__init__.py +0 -0
  6. dagster_cloud/agent/instrumentation/constants.py +2 -0
  7. dagster_cloud/agent/instrumentation/run_launch.py +23 -0
  8. dagster_cloud/agent/instrumentation/schedule.py +34 -0
  9. dagster_cloud/agent/instrumentation/sensor.py +34 -0
  10. dagster_cloud/anomaly_detection/__init__.py +2 -2
  11. dagster_cloud/anomaly_detection/defs.py +17 -12
  12. dagster_cloud/anomaly_detection/types.py +3 -3
  13. dagster_cloud/api/dagster_cloud_api.py +209 -293
  14. dagster_cloud/auth/constants.py +21 -5
  15. dagster_cloud/batching/__init__.py +1 -0
  16. dagster_cloud/batching/batcher.py +210 -0
  17. dagster_cloud/dagster_insights/__init__.py +12 -6
  18. dagster_cloud/dagster_insights/bigquery/bigquery_utils.py +3 -2
  19. dagster_cloud/dagster_insights/bigquery/dbt_wrapper.py +39 -12
  20. dagster_cloud/dagster_insights/bigquery/insights_bigquery_resource.py +8 -6
  21. dagster_cloud/dagster_insights/insights_utils.py +18 -8
  22. dagster_cloud/dagster_insights/metrics_utils.py +12 -12
  23. dagster_cloud/dagster_insights/snowflake/dagster_snowflake_insights.py +5 -12
  24. dagster_cloud/dagster_insights/snowflake/dbt_wrapper.py +34 -8
  25. dagster_cloud/dagster_insights/snowflake/definitions.py +38 -12
  26. dagster_cloud/dagster_insights/snowflake/insights_snowflake_resource.py +11 -23
  27. dagster_cloud/definitions/__init__.py +0 -0
  28. dagster_cloud/definitions/job_selection.py +36 -0
  29. dagster_cloud/execution/cloud_run_launcher/k8s.py +1 -1
  30. dagster_cloud/execution/cloud_run_launcher/process.py +3 -3
  31. dagster_cloud/execution/monitoring/__init__.py +27 -33
  32. dagster_cloud/execution/utils/process.py +3 -3
  33. dagster_cloud/instance/__init__.py +125 -38
  34. dagster_cloud/instrumentation/__init__.py +32 -0
  35. dagster_cloud/metadata/source_code.py +13 -8
  36. dagster_cloud/metrics/__init__.py +0 -0
  37. dagster_cloud/metrics/tracer.py +59 -0
  38. dagster_cloud/opentelemetry/__init__.py +0 -0
  39. dagster_cloud/opentelemetry/config/__init__.py +73 -0
  40. dagster_cloud/opentelemetry/config/exporter.py +81 -0
  41. dagster_cloud/opentelemetry/config/log_record_processor.py +40 -0
  42. dagster_cloud/opentelemetry/config/logging_handler.py +14 -0
  43. dagster_cloud/opentelemetry/config/meter_provider.py +9 -0
  44. dagster_cloud/opentelemetry/config/metric_reader.py +39 -0
  45. dagster_cloud/opentelemetry/controller.py +319 -0
  46. dagster_cloud/opentelemetry/enum.py +58 -0
  47. dagster_cloud/opentelemetry/factories/__init__.py +1 -0
  48. dagster_cloud/opentelemetry/factories/logs.py +113 -0
  49. dagster_cloud/opentelemetry/factories/metrics.py +121 -0
  50. dagster_cloud/opentelemetry/metrics/__init__.py +0 -0
  51. dagster_cloud/opentelemetry/metrics/meter.py +140 -0
  52. dagster_cloud/opentelemetry/observers/__init__.py +0 -0
  53. dagster_cloud/opentelemetry/observers/dagster_exception_handler.py +40 -0
  54. dagster_cloud/opentelemetry/observers/execution_observer.py +178 -0
  55. dagster_cloud/pex/grpc/__generated__/multi_pex_api_pb2.pyi +175 -0
  56. dagster_cloud/pex/grpc/__init__.py +2 -2
  57. dagster_cloud/pex/grpc/client.py +4 -4
  58. dagster_cloud/pex/grpc/compile.py +2 -2
  59. dagster_cloud/pex/grpc/server/__init__.py +2 -2
  60. dagster_cloud/pex/grpc/server/cli/__init__.py +31 -19
  61. dagster_cloud/pex/grpc/server/manager.py +60 -42
  62. dagster_cloud/pex/grpc/server/registry.py +28 -21
  63. dagster_cloud/pex/grpc/server/server.py +23 -14
  64. dagster_cloud/pex/grpc/types.py +5 -5
  65. dagster_cloud/py.typed +0 -0
  66. dagster_cloud/secrets/__init__.py +1 -1
  67. dagster_cloud/secrets/loader.py +3 -3
  68. dagster_cloud/serverless/__init__.py +1 -1
  69. dagster_cloud/serverless/io_manager.py +36 -53
  70. dagster_cloud/storage/client.py +54 -17
  71. dagster_cloud/storage/compute_logs/__init__.py +3 -1
  72. dagster_cloud/storage/compute_logs/compute_log_manager.py +22 -17
  73. dagster_cloud/storage/defs_state/__init__.py +3 -0
  74. dagster_cloud/storage/defs_state/queries.py +15 -0
  75. dagster_cloud/storage/defs_state/storage.py +113 -0
  76. dagster_cloud/storage/event_logs/__init__.py +3 -1
  77. dagster_cloud/storage/event_logs/queries.py +102 -4
  78. dagster_cloud/storage/event_logs/storage.py +266 -73
  79. dagster_cloud/storage/event_logs/utils.py +88 -7
  80. dagster_cloud/storage/runs/__init__.py +1 -1
  81. dagster_cloud/storage/runs/queries.py +17 -2
  82. dagster_cloud/storage/runs/storage.py +88 -42
  83. dagster_cloud/storage/schedules/__init__.py +1 -1
  84. dagster_cloud/storage/schedules/storage.py +6 -8
  85. dagster_cloud/storage/tags.py +66 -1
  86. dagster_cloud/util/__init__.py +10 -12
  87. dagster_cloud/util/errors.py +49 -64
  88. dagster_cloud/version.py +1 -1
  89. dagster_cloud/workspace/config_schema/__init__.py +55 -13
  90. dagster_cloud/workspace/docker/__init__.py +76 -25
  91. dagster_cloud/workspace/docker/utils.py +1 -1
  92. dagster_cloud/workspace/ecs/__init__.py +1 -1
  93. dagster_cloud/workspace/ecs/client.py +51 -33
  94. dagster_cloud/workspace/ecs/launcher.py +76 -22
  95. dagster_cloud/workspace/ecs/run_launcher.py +3 -3
  96. dagster_cloud/workspace/ecs/utils.py +14 -5
  97. dagster_cloud/workspace/kubernetes/__init__.py +1 -1
  98. dagster_cloud/workspace/kubernetes/launcher.py +61 -29
  99. dagster_cloud/workspace/kubernetes/utils.py +34 -22
  100. dagster_cloud/workspace/user_code_launcher/__init__.py +5 -3
  101. dagster_cloud/workspace/user_code_launcher/process.py +16 -14
  102. dagster_cloud/workspace/user_code_launcher/user_code_launcher.py +552 -172
  103. dagster_cloud/workspace/user_code_launcher/utils.py +105 -1
  104. {dagster_cloud-1.8.2.dist-info → dagster_cloud-1.12.6.dist-info}/METADATA +48 -42
  105. dagster_cloud-1.12.6.dist-info/RECORD +134 -0
  106. {dagster_cloud-1.8.2.dist-info → dagster_cloud-1.12.6.dist-info}/WHEEL +1 -1
  107. dagster_cloud-1.8.2.dist-info/RECORD +0 -100
  108. {dagster_cloud-1.8.2.dist-info → dagster_cloud-1.12.6.dist-info}/top_level.txt +0 -0
@@ -1,5 +1,12 @@
1
1
  import hashlib
2
+ import json
2
3
  import uuid
4
+ from typing import Optional
5
+
6
+ import yaml
7
+ from dagster._core.instance.ref import InstanceRef
8
+ from dagster._serdes import serialize_value
9
+ from dagster_cloud_cli.core.workspace import CodeLocationDeployData
3
10
 
4
11
 
5
12
  def unique_resource_name(deployment_name, location_name, length_limit, sanitize_fn):
@@ -25,7 +32,104 @@ def deterministic_label_for_location(deployment_name: str, location_name: str) -
25
32
  search for existing deployments on update and remove them. Does not need to be human-readable.
26
33
  """
27
34
  m = hashlib.sha1() # Creates a 40-byte hash
28
- m.update(f"{deployment_name}-{location_name}".encode("utf-8"))
35
+ m.update(f"{deployment_name}-{location_name}".encode())
29
36
 
30
37
  unique_label = m.hexdigest()
31
38
  return unique_label
39
+
40
+
41
+ def get_instance_ref_for_user_code(instance_ref: InstanceRef) -> InstanceRef:
42
+ # Remove fields from InstanceRef that may not be compatible with earlier
43
+ # versions of dagster and aren't actually needed by user code
44
+
45
+ custom_instance_class_data = instance_ref.custom_instance_class_data
46
+ if custom_instance_class_data:
47
+ config_dict = custom_instance_class_data.config_dict
48
+ new_config_dict = {
49
+ key: val for key, val in config_dict.items() if key not in {"agent_queues"}
50
+ }
51
+
52
+ user_code_launcher_config = config_dict.get("user_code_launcher", {}).get("config")
53
+ if user_code_launcher_config:
54
+ new_config_dict["user_code_launcher"]["config"] = {
55
+ key: val
56
+ for key, val in user_code_launcher_config.items()
57
+ if key not in {"agent_metrics"}
58
+ }
59
+
60
+ custom_instance_class_data = custom_instance_class_data._replace(
61
+ config_yaml=yaml.dump(new_config_dict)
62
+ )
63
+
64
+ return instance_ref._replace(custom_instance_class_data=custom_instance_class_data)
65
+
66
+
67
+ def get_grpc_server_env(
68
+ code_location_deploy_data: CodeLocationDeployData,
69
+ port: Optional[int],
70
+ location_name: str,
71
+ instance_ref: Optional[InstanceRef],
72
+ socket: Optional[str] = None,
73
+ ) -> dict[str, str]:
74
+ return {
75
+ **{
76
+ "DAGSTER_LOCATION_NAME": location_name,
77
+ "DAGSTER_INJECT_ENV_VARS_FROM_INSTANCE": "1",
78
+ "DAGSTER_CLI_API_GRPC_LAZY_LOAD_USER_CODE": "1",
79
+ "DAGSTER_CLI_API_GRPC_HOST": "0.0.0.0",
80
+ # include the container context on the code server to ensure that it is uploaded
81
+ # to the server and included in the workspace snapshot, which ensures that while a
82
+ # code location is still being updated, existing code will use the snapshotted
83
+ # version rather than the newly updated version
84
+ "DAGSTER_CONTAINER_CONTEXT": json.dumps(code_location_deploy_data.container_context),
85
+ },
86
+ **(
87
+ {"DAGSTER_INSTANCE_REF": serialize_value(get_instance_ref_for_user_code(instance_ref))}
88
+ if instance_ref
89
+ else {}
90
+ ),
91
+ **({"DAGSTER_CLI_API_GRPC_PORT": str(port)} if port else {}),
92
+ **({"DAGSTER_CLI_API_GRPC_SOCKET": str(socket)} if socket else {}),
93
+ **(
94
+ {"DAGSTER_CURRENT_IMAGE": code_location_deploy_data.image}
95
+ if code_location_deploy_data.image
96
+ else {}
97
+ ),
98
+ **(
99
+ {"DAGSTER_CLI_API_GRPC_PYTHON_FILE": code_location_deploy_data.python_file}
100
+ if code_location_deploy_data.python_file
101
+ else {}
102
+ ),
103
+ **(
104
+ {"DAGSTER_CLI_API_GRPC_MODULE_NAME": code_location_deploy_data.module_name}
105
+ if code_location_deploy_data.module_name
106
+ else {}
107
+ ),
108
+ **(
109
+ {"DAGSTER_CLI_API_GRPC_PACKAGE_NAME": code_location_deploy_data.package_name}
110
+ if code_location_deploy_data.package_name
111
+ else {}
112
+ ),
113
+ **(
114
+ {"DAGSTER_CLI_API_GRPC_WORKING_DIRECTORY": code_location_deploy_data.working_directory}
115
+ if code_location_deploy_data.working_directory
116
+ else {}
117
+ ),
118
+ **(
119
+ {"DAGSTER_CLI_API_GRPC_ATTRIBUTE": code_location_deploy_data.attribute}
120
+ if code_location_deploy_data.attribute
121
+ else {}
122
+ ),
123
+ **(
124
+ {"DAGSTER_CLI_API_GRPC_USE_PYTHON_ENVIRONMENT_ENTRY_POINT": "1"}
125
+ if code_location_deploy_data.executable_path
126
+ else {}
127
+ ),
128
+ **(
129
+ {
130
+ "DAGSTER_CLI_API_GRPC_AUTOLOAD_DEFS_MODULE_NAME": code_location_deploy_data.autoload_defs_module_name
131
+ }
132
+ if code_location_deploy_data.autoload_defs_module_name
133
+ else {}
134
+ ),
135
+ }
@@ -1,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: dagster-cloud
3
- Version: 1.8.2
4
- Author: Elementl
5
- Author-email: support@elementl.com
3
+ Version: 1.12.6
4
+ Author-email: Elementl <support@elementl.com>
6
5
  License: Apache-2.0
7
6
  Project-URL: Homepage, https://dagster.io/cloud
8
7
  Project-URL: GitHub, https://github.com/dagster-io/dagster-cloud
@@ -19,7 +18,6 @@ Classifier: Environment :: Console
19
18
  Classifier: Environment :: Web Environment
20
19
  Classifier: Intended Audience :: Developers
21
20
  Classifier: Intended Audience :: System Administrators
22
- Classifier: Programming Language :: Python :: 3.8
23
21
  Classifier: Programming Language :: Python :: 3.9
24
22
  Classifier: Programming Language :: Python :: 3.10
25
23
  Classifier: Programming Language :: Python :: 3.11
@@ -28,50 +26,58 @@ Classifier: License :: OSI Approved :: Apache Software License
28
26
  Classifier: Topic :: System :: Monitoring
29
27
  Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
30
28
  Classifier: Operating System :: OS Independent
29
+ Requires-Python: <3.14,>=3.9
31
30
  Description-Content-Type: text/markdown
32
- Requires-Dist: dagster ==1.8.2
33
- Requires-Dist: dagster-cloud-cli ==1.8.2
34
- Requires-Dist: pex <3,>=2.1.132
31
+ Requires-Dist: dagster==1.12.6
32
+ Requires-Dist: dagster-shared==1.12.6
33
+ Requires-Dist: dagster-cloud-cli==1.12.6
34
+ Requires-Dist: opentelemetry-api<2,>=1.27.0
35
+ Requires-Dist: opentelemetry-sdk<2,>=1.27.0
36
+ Requires-Dist: opentelemetry-exporter-otlp-proto-grpc<2,>=1.27.0
37
+ Requires-Dist: opentelemetry-exporter-otlp-proto-http<2,>=1.27.0
38
+ Requires-Dist: pex<2.60.0,>=2.1.132
35
39
  Requires-Dist: questionary
36
40
  Requires-Dist: requests
37
41
  Requires-Dist: typer
38
- Provides-Extra: docker
39
- Requires-Dist: docker ; extra == 'docker'
40
- Requires-Dist: dagster-docker ==0.24.2 ; extra == 'docker'
41
- Provides-Extra: ecs
42
- Requires-Dist: dagster-aws ==0.24.2 ; extra == 'ecs'
43
- Requires-Dist: boto3 ; extra == 'ecs'
42
+ Provides-Extra: tests
43
+ Requires-Dist: docker; extra == "tests"
44
+ Requires-Dist: httpretty; extra == "tests"
45
+ Requires-Dist: isort; extra == "tests"
46
+ Requires-Dist: freezegun; extra == "tests"
47
+ Requires-Dist: wordcloud; extra == "tests"
48
+ Requires-Dist: kubernetes; extra == "tests"
49
+ Requires-Dist: moto[all]; extra == "tests"
50
+ Requires-Dist: mypy; extra == "tests"
51
+ Requires-Dist: psutil; extra == "tests"
52
+ Requires-Dist: pylint; extra == "tests"
53
+ Requires-Dist: pytest; extra == "tests"
54
+ Requires-Dist: types-PyYAML; extra == "tests"
55
+ Requires-Dist: types-requests; extra == "tests"
56
+ Requires-Dist: dagster-cloud-test-infra; extra == "tests"
57
+ Requires-Dist: dbt-bigquery>=1.9.0; extra == "tests"
58
+ Requires-Dist: dbt-core; extra == "tests"
59
+ Requires-Dist: dbt-snowflake; extra == "tests"
60
+ Requires-Dist: dbt-duckdb; extra == "tests"
61
+ Requires-Dist: dagster-dbt; extra == "tests"
62
+ Requires-Dist: dagster-k8s; extra == "tests"
63
+ Requires-Dist: dagster-cloud-backend; extra == "tests"
44
64
  Provides-Extra: insights
45
- Requires-Dist: pyarrow ; extra == 'insights'
65
+ Requires-Dist: pyarrow; extra == "insights"
66
+ Provides-Extra: docker
67
+ Requires-Dist: docker; extra == "docker"
68
+ Requires-Dist: dagster-docker==0.28.6; extra == "docker"
46
69
  Provides-Extra: kubernetes
47
- Requires-Dist: kubernetes ; extra == 'kubernetes'
48
- Requires-Dist: dagster-k8s ==0.24.2 ; extra == 'kubernetes'
49
- Provides-Extra: pex
50
- Requires-Dist: boto3 ; extra == 'pex'
70
+ Requires-Dist: kubernetes; extra == "kubernetes"
71
+ Requires-Dist: dagster-k8s==0.28.6; extra == "kubernetes"
72
+ Provides-Extra: ecs
73
+ Requires-Dist: dagster-aws==0.28.6; extra == "ecs"
74
+ Requires-Dist: boto3; extra == "ecs"
51
75
  Provides-Extra: sandbox
52
- Requires-Dist: supervisor ; extra == 'sandbox'
76
+ Requires-Dist: supervisor; extra == "sandbox"
77
+ Provides-Extra: pex
78
+ Requires-Dist: boto3; extra == "pex"
53
79
  Provides-Extra: serverless
54
- Requires-Dist: boto3 ; extra == 'serverless'
55
- Provides-Extra: tests
56
- Requires-Dist: docker ; extra == 'tests'
57
- Requires-Dist: httpretty ; extra == 'tests'
58
- Requires-Dist: isort ; extra == 'tests'
59
- Requires-Dist: kubernetes ; extra == 'tests'
60
- Requires-Dist: moto[all] ; extra == 'tests'
61
- Requires-Dist: mypy ; extra == 'tests'
62
- Requires-Dist: paramiko ; extra == 'tests'
63
- Requires-Dist: psutil ; extra == 'tests'
64
- Requires-Dist: pylint ; extra == 'tests'
65
- Requires-Dist: pytest ; extra == 'tests'
66
- Requires-Dist: types-PyYAML ; extra == 'tests'
67
- Requires-Dist: types-requests ; extra == 'tests'
68
- Requires-Dist: dagster-cloud-test-infra ; extra == 'tests'
69
- Requires-Dist: dbt-bigquery ; extra == 'tests'
70
- Requires-Dist: dbt-core ; extra == 'tests'
71
- Requires-Dist: dbt-snowflake ; extra == 'tests'
72
- Requires-Dist: dbt-duckdb ; extra == 'tests'
73
- Requires-Dist: dagster-dbt ==0.24.2 ; extra == 'tests'
74
- Requires-Dist: dagster-k8s ==0.24.2 ; extra == 'tests'
80
+ Requires-Dist: boto3; extra == "serverless"
75
81
 
76
82
  <p align="center">
77
83
  <a target="_blank" href="https://dagster.io/cloud" style="background:none">
@@ -111,7 +117,7 @@ trial.
111
117
 
112
118
  ## Installation
113
119
 
114
- The Dagster Cloud Agent is available on PyPI and officially supports Python 3.8.
120
+ The Dagster Cloud Agent is available on [PyPI](https://pypi.org/project/dagster-cloud/).
115
121
 
116
122
  ```
117
123
  pip install dagster-cloud
@@ -0,0 +1,134 @@
1
+ dagster_cloud/__init__.py,sha256=zyM9bqyJFxtEClv_5X4VRldrj0UniKgZzEl0pPJJ_Ts,355
2
+ dagster_cloud/constants.py,sha256=CPAqXJ99SWGMviksdIA2A9894FEvHChNk8UcP4TluYM,455
3
+ dagster_cloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ dagster_cloud/version.py,sha256=K-O_Zmi1DuK_mEBcDOT_b5zNp9ONlW-73xBIaMAX9Fo,23
5
+ dagster_cloud/agent/__init__.py,sha256=_erVyIrxuHUiyNerwX8vNZcKZN8NAloTEkPq8vPZ3MI,811
6
+ dagster_cloud/agent/dagster_cloud_agent.py,sha256=bNMPSJBURWYbwAPhTbYq34o5qxPrqVWI2JA9b6vKHiw,58341
7
+ dagster_cloud/agent/queries.py,sha256=iI84GQ1Zxt5ryo6M1ELIaIae-gwUY14QPPMUeiFK97o,1837
8
+ dagster_cloud/agent/cli/__init__.py,sha256=rGbeQJ2Ap95wPYQuk5XbyHAfP9cs-XPUSmuVM_k278k,9084
9
+ dagster_cloud/agent/instrumentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ dagster_cloud/agent/instrumentation/constants.py,sha256=X4GG4adYsOAde_kff89LtErMS9abbna_wm9sjGPvvlw,95
11
+ dagster_cloud/agent/instrumentation/run_launch.py,sha256=fiEgW4UAtljMZzEZDidpTTT42yCfwoCYiaizVml5zRQ,734
12
+ dagster_cloud/agent/instrumentation/schedule.py,sha256=DRhJ_2PwGeaeOZ1ey9NbSsAplY_EJS1supcrljtc858,1304
13
+ dagster_cloud/agent/instrumentation/sensor.py,sha256=wGpe3XHyXx4PWlXEa7CNQq3f7-IxWdOgTLEJH2FRnGk,1290
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
+ dagster_cloud/anomaly_detection/mutation.py,sha256=TDMwkfWGXKF0609FL8T1NgnXgtIoSi8VpjSQ3y89C8Y,410
17
+ dagster_cloud/anomaly_detection/types.py,sha256=9kJrJOT0Y57fk_4mGerNbwFJLNglI0XAP6NBW0hHuYE,2239
18
+ dagster_cloud/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ dagster_cloud/api/dagster_cloud_api.py,sha256=6ge6WX8SCRKu9wTD0YgTBvCHgPN1_DFrIH_Y0Y9GFuA,14589
20
+ dagster_cloud/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
+ dagster_cloud/auth/__init__.py,sha256=rUuAWah3YD-0tatQPFlmLNJpsGQ9ZRj7sUOSTrnf0zQ,248
22
+ dagster_cloud/auth/constants.py,sha256=zFhKSUBkBKz5_eSTCp5FV8K_HFYJRGHDby-xC7KE4bo,1808
23
+ dagster_cloud/batching/__init__.py,sha256=psHEDtSs1gb-nmWtbAq1pp8Lip5PvTz_wxK-u_0babA,62
24
+ dagster_cloud/batching/batcher.py,sha256=kt9F-WdMnCJstCJFuHqagG_eHFTWjlfRQdhE-Cc9Hvw,7796
25
+ dagster_cloud/dagster_insights/__init__.py,sha256=s8PrSxja4JgQtXz3tuzqPH3oqhm5OMo-97qDBpeQ6LA,2079
26
+ dagster_cloud/dagster_insights/errors.py,sha256=_GrycqbxxqHSnxKveff-sJz9L-UHi4iRg-U_rGAEss8,138
27
+ dagster_cloud/dagster_insights/insights_utils.py,sha256=B7VwG2Gx8mpkcbkNJ1YaOypgeCaA3d3Kfc0Eves-OFg,4658
28
+ dagster_cloud/dagster_insights/metrics_utils.py,sha256=woZddMZIj2YRjALFFSpOPa6weWvwtzmjl3rHlXs6fbQ,3498
29
+ dagster_cloud/dagster_insights/query.py,sha256=BB-JgzCZl-lLHPP8irF3p6X6hkLoni2HpBS4iviibqU,1403
30
+ dagster_cloud/dagster_insights/bigquery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ dagster_cloud/dagster_insights/bigquery/bigquery_utils.py,sha256=hcE0yyU_tFBYVMFs3_7VgDAfu6sIYhD0qmEzWVodQ14,824
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
+ dagster_cloud/dagster_insights/snowflake/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
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
+ dagster_cloud/dagster_insights/snowflake/snowflake_utils.py,sha256=JLxM1wNIdwtJj3oBIdGfPtaksdaFUPwWMJJRfEQd2mw,3808
40
+ dagster_cloud/definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ dagster_cloud/definitions/job_selection.py,sha256=HsTU_k2AUON1mVi2mqkDpCEOiy34ANa2OOMozSrDSeQ,1022
42
+ dagster_cloud/execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ dagster_cloud/execution/cloud_run_launcher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
+ dagster_cloud/execution/cloud_run_launcher/k8s.py,sha256=BWqq74rzRyEfziDut958cusxA634dDMGjm2buE4wzH8,380
45
+ dagster_cloud/execution/cloud_run_launcher/process.py,sha256=eYxvzcaJbqYKjHcXMUUXvTAraygnlHiitVBON5utxkk,3287
46
+ dagster_cloud/execution/monitoring/__init__.py,sha256=2_o2UjeEPvfSpnOb0zky3ZQs-G9VHABAXzjvfMnAh8A,17782
47
+ dagster_cloud/execution/utils/__init__.py,sha256=EfU-tK5-ScZYLF_zmWqUgIrmLsb9DDHWFN-CSg3BSXY,254
48
+ dagster_cloud/execution/utils/process.py,sha256=Er6FKMdlGBjpOHDEIkukZf4-TiZ3Xi_iqurfxkOozGM,911
49
+ dagster_cloud/instance/__init__.py,sha256=ecxGScVMeqQJqegEUOzMA-LRkovHSB5LgkL4zcFyz8c,26135
50
+ dagster_cloud/instrumentation/__init__.py,sha256=OKaT4qkwQNmCFdKveVrgB7JIo5sZD1F1rutQKdozK_4,886
51
+ dagster_cloud/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
+ dagster_cloud/metadata/source_code.py,sha256=yCUfD6V-wR2s4AUrmVpX_Dd7Gln7SYbtpuEpAH71J1I,5952
53
+ dagster_cloud/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
+ dagster_cloud/metrics/tracer.py,sha256=DtVuEUp6LI2p8LRyMcuNBn4dChs8vGT9swSCtuYHgIw,1518
55
+ dagster_cloud/opentelemetry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
+ dagster_cloud/opentelemetry/controller.py,sha256=48CvdcljFZ0ZEtDlzMtRfF1fOzVYsSMr08w9dw5je08,13030
57
+ dagster_cloud/opentelemetry/enum.py,sha256=ls6J0fde00WP9vYdFNUOQijbTBGsb7kRD0lar6ImtLk,1686
58
+ dagster_cloud/opentelemetry/config/__init__.py,sha256=Aegfue6NedLV64yCAKQtV3uDjJJLjWKeg53F7SQ46zs,2868
59
+ dagster_cloud/opentelemetry/config/exporter.py,sha256=zznpS4PaBJ5RrvJiRZH-DBi0k0tMK7_xsUbrmbpsyxM,3551
60
+ dagster_cloud/opentelemetry/config/log_record_processor.py,sha256=nCeOwxHUlWaes0MHUFvkRlofa5w0_alHpuFYQhLuccY,1631
61
+ dagster_cloud/opentelemetry/config/logging_handler.py,sha256=POuO_Q_mcsXm9bIdIbg_oEvNswISgkbuYx6R2XiNykw,378
62
+ dagster_cloud/opentelemetry/config/meter_provider.py,sha256=CDNMaO-CDOWM8MwY6PG0FWSM326QiK1G4pLUtal_2Ew,242
63
+ dagster_cloud/opentelemetry/config/metric_reader.py,sha256=pZ-H7stZ-Dv4rfZHdbgM0Ko1CCKRrI7Yl-DIixGIPDY,1636
64
+ dagster_cloud/opentelemetry/factories/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
65
+ dagster_cloud/opentelemetry/factories/logs.py,sha256=U8nGPYnYZPP0SA2Lu5l9cclscZqZLFhpnKnBeMU1wuQ,4047
66
+ dagster_cloud/opentelemetry/factories/metrics.py,sha256=GnTqoNpKkbabIYfY9-ISD2TalXSllp43UgIOPT4HqyY,4659
67
+ dagster_cloud/opentelemetry/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ dagster_cloud/opentelemetry/metrics/meter.py,sha256=g8mFN2uESWE1aHZcu4GqdBJaXwx6Hlm0y_x2GfghXf8,4447
69
+ dagster_cloud/opentelemetry/observers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
+ dagster_cloud/opentelemetry/observers/dagster_exception_handler.py,sha256=EzSeP7-pndKkMiBf8wXVOnuyvcPxToB4QqWOisA1Hm8,1813
71
+ dagster_cloud/opentelemetry/observers/execution_observer.py,sha256=ZpD74KGUm6f_XnP5sJVgl8-u_pX8p-98PmlhnN0V9KM,6287
72
+ dagster_cloud/pex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
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
+ dagster_cloud/pex/grpc/compile.py,sha256=MYtrKFY4WDUTJWEf8udFzhqAZqEKkLx9SK14UPsCUhA,3780
76
+ dagster_cloud/pex/grpc/types.py,sha256=2EcmurOIiidoxKF-YclX6VkkYFJVPiadUIYnem3UAP4,3355
77
+ dagster_cloud/pex/grpc/__generated__/__init__.py,sha256=oEuGZ7LJL3L6T11qpdOQhVwWi3ej-k99ZTUe8UytWYc,285
78
+ dagster_cloud/pex/grpc/__generated__/multi_pex_api_pb2.py,sha256=5WTKXp6mq4bREnT8vcvPxgDZ39kkfLiU2Dd_xh0wZxY,3907
79
+ dagster_cloud/pex/grpc/__generated__/multi_pex_api_pb2.pyi,sha256=RdlI8IAu7NxLB0LE3lGGtFMTCfiBxFWPjBwtYvFiiaY,5922
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=OKZqM9NdiRBUOUtWRdWG1_kaS13ELJJ5yHTHUc375ns,177
82
+ dagster_cloud/pex/grpc/server/manager.py,sha256=SegQH4TbzmZenS5Hm3Fk2R4ps2tyAGP4QGqXWKwLbJY,18771
83
+ dagster_cloud/pex/grpc/server/registry.py,sha256=8K7K0X3vxK3LBz9JSglDWs5BSktQ0ohCz9INYrDM08w,12940
84
+ dagster_cloud/pex/grpc/server/server.py,sha256=wdpCFDKQbV7C-M9l5PryQjwtGZphdaG7hO1a3GVXqbQ,16441
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
+ dagster_cloud/secrets/loader.py,sha256=gr5m3Ih7fsg8DBSKCmtHCUCpgzNxBOera6B3ONLYKWo,1661
88
+ dagster_cloud/serverless/__init__.py,sha256=xB_3Z7BeTIOPjyaonbbEBSYw80MT9Cigr9jabvckyzI,95
89
+ dagster_cloud/serverless/io_manager.py,sha256=ms9DzZ9Sqs83TOFV4gAnzBht4ufIzVs0Oyl6FCw3pEI,4054
90
+ dagster_cloud/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
+ dagster_cloud/storage/client.py,sha256=jsqlQehNImOygYEAq0NoEVlbCn5EbIS0VZJabuVtxL8,2992
92
+ dagster_cloud/storage/tags.py,sha256=YeWSWgpguqvpndFGMM0W7gORn0F8P3CDcanElE7n2Vo,2414
93
+ dagster_cloud/storage/compute_logs/__init__.py,sha256=9TWHkWqOmqEQz9HM-brZwYOMtD6KqP5oeyLLcuDuYa0,125
94
+ dagster_cloud/storage/compute_logs/compute_log_manager.py,sha256=OBNuGj0PECWmnAfbayFtRixztOcqaK-IGmgOD0AokfY,4857
95
+ dagster_cloud/storage/defs_state/__init__.py,sha256=eGmQiGjhAYl9FWsO1YcGcf8k1EpZi0EgtWPWWNH3VGE,113
96
+ dagster_cloud/storage/defs_state/queries.py,sha256=UICxqqWH1gCpE_YR7TedxanES2gZ_7dR00y6KR8HWQA,365
97
+ dagster_cloud/storage/defs_state/storage.py,sha256=AwuEUuMZQrlmOPZZXVdW73M8KnTdkK4G3ViCfL9iLDM,3979
98
+ dagster_cloud/storage/event_logs/__init__.py,sha256=kZotTbwh4KGH6Oe7PFXj1PMg9ji85hOOX4NcYHK6JJY,111
99
+ dagster_cloud/storage/event_logs/queries.py,sha256=sgkHhHX-0Vr9WukcRjbuGSH8vjC9razSNnwqXBrihX8,19924
100
+ dagster_cloud/storage/event_logs/storage.py,sha256=kh9SlpoS2OCFHR77Zxs6SBOfKKGbMGUZB5YWdWLzVuc,56454
101
+ dagster_cloud/storage/event_logs/utils.py,sha256=M6uvW8L-H7600bjOy5yTTealHVKKXAFBJO4dRZObTdI,3061
102
+ dagster_cloud/storage/runs/__init__.py,sha256=aNua07DabXVkxhOvQol1Vai4Lg88a_BwuxnvKiwV6_4,86
103
+ dagster_cloud/storage/runs/queries.py,sha256=vJFvL5cU8iV-CqwOZUTupKJ42-LJ0FJDR113LjOqWvc,7250
104
+ dagster_cloud/storage/runs/storage.py,sha256=WjGN2LaSSLh7c_Q9uGk-AUTY03c6eYlv92RHD001M04,22504
105
+ dagster_cloud/storage/schedules/__init__.py,sha256=RvRDZERTOgdKIfkm1xrEIZBdZ8lM1Kotdu20BK2_Tak,101
106
+ dagster_cloud/storage/schedules/queries.py,sha256=TnrMvk1rCSKG_gWcxYjGg27X9ie_AVU9350NLL3OR-k,1930
107
+ dagster_cloud/storage/schedules/storage.py,sha256=YwXY-_8-lDMW2bDMMmEm6o_5ih6Yh1hofrxh0Tqb9YY,7776
108
+ dagster_cloud/util/__init__.py,sha256=-rLWHQVwWr0FHyz5dDA-Ia2BRDKJvUQDm9CX3D3mw20,2609
109
+ dagster_cloud/util/container_resources.py,sha256=qkFiULrhvqSB4iLlL30bQpO_XjXrm5lNfMx8iFUYiR8,4693
110
+ dagster_cloud/util/errors.py,sha256=EazIylrZJRbPkpG6SIMqTzXY3fSKBS1pck59wXCrNZE,1638
111
+ dagster_cloud/workspace/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
+ dagster_cloud/workspace/config_schema/__init__.py,sha256=tkGPjf7fw_k0bB_FDZJsIdNAZyZs-GLxRyZvlqedUIM,12542
113
+ dagster_cloud/workspace/config_schema/docker.py,sha256=Xs7FDBVpIOMlWcKXrVWX_lSDgf9qpc9UpYcps1IdQDQ,967
114
+ dagster_cloud/workspace/config_schema/ecs.py,sha256=NKB08hsYlowORvBHCrTqmKVbF67q1XDb-40s1phI5DE,6575
115
+ dagster_cloud/workspace/config_schema/kubernetes.py,sha256=JIdZ5hX06hAw1lGT-5AcwZjfoKMnMj3PKjaQ9GDUL-U,5286
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
+ dagster_cloud/workspace/ecs/client.py,sha256=M9JRwv7UsB7C5_-TaIfAYc2tejxp_ialQ6PB-7QzVyA,31157
120
+ dagster_cloud/workspace/ecs/launcher.py,sha256=z9sasod3QFEtvQ_eVw8R1pWHLiY70MviuJAbR67E6zs,31189
121
+ dagster_cloud/workspace/ecs/run_launcher.py,sha256=e8Rgd3dcrHL1O_Q7UcR11JO75sxCcA8YaaOUmpk3WrU,600
122
+ dagster_cloud/workspace/ecs/service.py,sha256=v-puyDEg2BzHA3RJqEhH8V04bUAcrYIlPCH1SThvwWw,4126
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
+ dagster_cloud/workspace/user_code_launcher/user_code_launcher.py,sha256=BWkm4stk35HrFGydB5Cp61v-OI3z1eTZsFUec1hpGSI,103700
130
+ dagster_cloud/workspace/user_code_launcher/utils.py,sha256=t8Epee9MrXtRhWL-b_3avXxgMGrjLScUNWtBUUGpMCg,5285
131
+ dagster_cloud-1.12.6.dist-info/METADATA,sha256=jbYPAjaRt_dKqF0q-f8HksyqFny7utaQk0VlQMeX8-M,6582
132
+ dagster_cloud-1.12.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
133
+ dagster_cloud-1.12.6.dist-info/top_level.txt,sha256=2hMt-U33jyCgnywNrDB9Ih0EpaVmiO6dFkYcJ7Iwx4I,14
134
+ dagster_cloud-1.12.6.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,100 +0,0 @@
1
- dagster_cloud/__init__.py,sha256=q3UY5eTfCSqZrr35mmn1b1B_AD1VbfR4Alj8cZ49Xg4,316
2
- dagster_cloud/constants.py,sha256=CPAqXJ99SWGMviksdIA2A9894FEvHChNk8UcP4TluYM,455
3
- dagster_cloud/version.py,sha256=d6593s-XBNvVxri9lr2qLUDZQ3Zk3-VXHEwdb4pj8qA,22
4
- dagster_cloud/agent/__init__.py,sha256=-qroPbaYp3rXQ8ovU5t7OArI9fOh8RYJqBka6Ub80Is,817
5
- dagster_cloud/agent/dagster_cloud_agent.py,sha256=kmlREfRZEUwa3d9VsXI62uBrVIf4CyOCNqxGt9Q2uBY,49736
6
- dagster_cloud/agent/queries.py,sha256=iI84GQ1Zxt5ryo6M1ELIaIae-gwUY14QPPMUeiFK97o,1837
7
- dagster_cloud/agent/cli/__init__.py,sha256=E1d64H-jihV9XC2SsKyr34or-DSSD02oqecYplhDc4s,7584
8
- dagster_cloud/anomaly_detection/__init__.py,sha256=Qh36mKv0HZTIN0WI-ItlN_tYmiMXR5PIThco5ieJ1gY,279
9
- dagster_cloud/anomaly_detection/defs.py,sha256=5Er6Nt9P4ru7XKOQBxE5vGmHPBqpWAFmKkvIq3_ex7E,9916
10
- dagster_cloud/anomaly_detection/mutation.py,sha256=TDMwkfWGXKF0609FL8T1NgnXgtIoSi8VpjSQ3y89C8Y,410
11
- dagster_cloud/anomaly_detection/types.py,sha256=lrtFECjgezzj3VHUh_Gl2NF411ofUG4OC_MJKfxtmdA,2245
12
- dagster_cloud/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
- dagster_cloud/api/dagster_cloud_api.py,sha256=cRcJ9woxQIBfEozL7oO2Sx1e5ZCq2DwCHIzlgTnutBM,20003
14
- dagster_cloud/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- dagster_cloud/auth/__init__.py,sha256=rUuAWah3YD-0tatQPFlmLNJpsGQ9ZRj7sUOSTrnf0zQ,248
16
- dagster_cloud/auth/constants.py,sha256=hl2aE8Wsg-Z6EDW9sDJAWMoEvTCPQgdlKOqoqnVP10Q,1242
17
- dagster_cloud/dagster_insights/__init__.py,sha256=_qTVj3INjL-Y2YADy7uElk4HStZUBZoPD32jY5DbwF4,1864
18
- dagster_cloud/dagster_insights/errors.py,sha256=_GrycqbxxqHSnxKveff-sJz9L-UHi4iRg-U_rGAEss8,138
19
- dagster_cloud/dagster_insights/insights_utils.py,sha256=XDG8wShAf3lPgEMRImYGtZ8-2iI1k-7XK0L1gLbM5Lo,4440
20
- dagster_cloud/dagster_insights/metrics_utils.py,sha256=O6chwAgGMxY0pS-AxQnm5uNKfNxXGiVmbF8HFblPquY,3528
21
- dagster_cloud/dagster_insights/query.py,sha256=BB-JgzCZl-lLHPP8irF3p6X6hkLoni2HpBS4iviibqU,1403
22
- dagster_cloud/dagster_insights/bigquery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- dagster_cloud/dagster_insights/bigquery/bigquery_utils.py,sha256=faJa_sekZBZ0IvvQt-fk1cMPJg4t-kCaJ3ziOGjKipk,803
24
- dagster_cloud/dagster_insights/bigquery/dbt_wrapper.py,sha256=ByhOCgJfmdm1Alq78Bh2WWzajXT0_R1ZzOjbHuB-KPw,8766
25
- dagster_cloud/dagster_insights/bigquery/insights_bigquery_resource.py,sha256=gm1GvokBu9oGtbAzcgoo-Wt-MwwSsAzU_reX9arqu0s,3212
26
- dagster_cloud/dagster_insights/snowflake/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
- dagster_cloud/dagster_insights/snowflake/dagster_snowflake_insights.py,sha256=pOv36TsgLl04ioQBsVwJEQp6Hgf1TFjXS3ffbRR-jbk,3353
28
- dagster_cloud/dagster_insights/snowflake/dbt_wrapper.py,sha256=beeldZjgykrEKfpQLgKQiBWXv67H2VUbWm3BOW805oY,5148
29
- dagster_cloud/dagster_insights/snowflake/definitions.py,sha256=CeqXopM72ORi9C5AYAy2SDz2X0ip-f-HnK6ZGjttlbk,7224
30
- dagster_cloud/dagster_insights/snowflake/insights_snowflake_resource.py,sha256=YVyoyDPZcj4tL-BpniFHjiSJUe2Ny37FejA4L7C3ciY,10739
31
- dagster_cloud/dagster_insights/snowflake/snowflake_utils.py,sha256=JLxM1wNIdwtJj3oBIdGfPtaksdaFUPwWMJJRfEQd2mw,3808
32
- dagster_cloud/execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- dagster_cloud/execution/cloud_run_launcher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- dagster_cloud/execution/cloud_run_launcher/k8s.py,sha256=gSiveNPFWmOE86cymb8GXqR1qscViLMyOHTG5qBnOoQ,327
35
- dagster_cloud/execution/cloud_run_launcher/process.py,sha256=wPOUvmidlovjey_7MBcz_nUeBXntydXgGrDeHI8Vcow,3225
36
- dagster_cloud/execution/monitoring/__init__.py,sha256=cWLGBEErnxsBNAaZ5IuO26uU2BVYeLt3iwPXwiUWias,17635
37
- dagster_cloud/execution/utils/__init__.py,sha256=EfU-tK5-ScZYLF_zmWqUgIrmLsb9DDHWFN-CSg3BSXY,254
38
- dagster_cloud/execution/utils/process.py,sha256=mXqPFk6WL5HUjnwmaaJEFfjxfkHR-qwd-ONTH_WOgIE,875
39
- dagster_cloud/instance/__init__.py,sha256=MowQ6SG-jPJ9kP7MU8LDPXukCLGbdQGiGv3QKOCQ8lo,22345
40
- dagster_cloud/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- dagster_cloud/metadata/source_code.py,sha256=fIDufZjB3xmIOLQGxPoRlAXO4I8frA8cPTR2_YwDuKY,5794
42
- dagster_cloud/pex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
- dagster_cloud/pex/grpc/__init__.py,sha256=msNCcQnDDAX0Tik9SRYnWwpNU5kpvzZLsDddE0iopnU,327
44
- dagster_cloud/pex/grpc/client.py,sha256=yOkDd3c52hvWbSiTz0-lMLI2Itqr5oDSHGoSStQB8UE,5251
45
- dagster_cloud/pex/grpc/compile.py,sha256=a3Jg7-hqboPmxfLLTeVOx7mHDicgxkWXJOCLHisGQwE,3790
46
- dagster_cloud/pex/grpc/types.py,sha256=5A96llCWtBekgpOsw1q0TJ7kHV_DZL8cqB9y4Qtp8vk,3405
47
- dagster_cloud/pex/grpc/__generated__/__init__.py,sha256=oEuGZ7LJL3L6T11qpdOQhVwWi3ej-k99ZTUe8UytWYc,285
48
- dagster_cloud/pex/grpc/__generated__/multi_pex_api_pb2.py,sha256=5WTKXp6mq4bREnT8vcvPxgDZ39kkfLiU2Dd_xh0wZxY,3907
49
- dagster_cloud/pex/grpc/__generated__/multi_pex_api_pb2_grpc.py,sha256=cCwuUnJ1UH3NFLebv1EZG_TfsV8n9IF9A-WTsfXIeZk,9301
50
- dagster_cloud/pex/grpc/server/__init__.py,sha256=S8ysYIOX0maTT5AhJwL8IF7D1qb0e0nF1zIYdXXGuF4,119
51
- dagster_cloud/pex/grpc/server/manager.py,sha256=ToGmC8ILW2r02kCuVXfwwrG68sK_wzv_lkVJNvXH0EI,17849
52
- dagster_cloud/pex/grpc/server/registry.py,sha256=XEykxV5UBqVEK3ma35frVKuRHQ8Y4M5wIFgV4f5Ovxk,12828
53
- dagster_cloud/pex/grpc/server/server.py,sha256=Ozn1Q6p-GpSrzkN1DTeZtoTYy2aOFuq4Y94WL-TJmn0,16001
54
- dagster_cloud/pex/grpc/server/cli/__init__.py,sha256=ldCCBKsujc5oCvTVBBxVIub_cHvU1ft6HYSuPyHXSTo,2115
55
- dagster_cloud/secrets/__init__.py,sha256=llwoFhGr7dcN5b8W7qBO6QTsfUPLaKeL1yLNdfhlrPo,75
56
- dagster_cloud/secrets/loader.py,sha256=b04kL_320AoPW9rAFrqqu7xvx3_sO27CzOKu8VAoUE0,1620
57
- dagster_cloud/serverless/__init__.py,sha256=bbh51cr-tWBiKxL1a5vcK1sA7syniOTQPnfBFnxjbnw,71
58
- dagster_cloud/serverless/io_manager.py,sha256=5jXkKYbSvhtuejIfbTNqM1owc3R10ZlZkZuyx1DMokg,4245
59
- dagster_cloud/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
- dagster_cloud/storage/client.py,sha256=mIE8-4Y3WkvWAcUxQ8mn7zCvELtFp6E5qwZ_UT98yf8,1690
61
- dagster_cloud/storage/tags.py,sha256=_K4HSX_l6JG2mCcdHT8SrQQJzI0KFrgtSbHjsBi8wwE,502
62
- dagster_cloud/storage/compute_logs/__init__.py,sha256=6O5IqKYrNZ6Yz0cataEa2_8u6kYAIP6PXOoeqh5jvjo,82
63
- dagster_cloud/storage/compute_logs/compute_log_manager.py,sha256=HfLoIJtX3drWFzZDRrOwAb3jBFGYRaz2-U_hvVsn0Ks,4753
64
- dagster_cloud/storage/event_logs/__init__.py,sha256=N45uxmVOvMtOSYJFktLE32sJ6Ju9EFcwMH4b8L2DDFk,70
65
- dagster_cloud/storage/event_logs/queries.py,sha256=4EaRXW5u9O5fbKtOgyU1YwMvauaQ6EAw_L4MpiSLrIw,17550
66
- dagster_cloud/storage/event_logs/storage.py,sha256=-FTQOa4AxHYFxQIows4jFTMlvQ0blYY76tSCdG4kSe0,48483
67
- dagster_cloud/storage/event_logs/utils.py,sha256=Ldfy5RuZkWo-YxFqDB7cLnkA9i2uXHWPO0usr262gUg,640
68
- dagster_cloud/storage/runs/__init__.py,sha256=9oV0o8ETp6-fjMRXXabwK0ggi62ue9R00ehmmStMR_s,60
69
- dagster_cloud/storage/runs/queries.py,sha256=aGURMiD79R2YbBuOmCvsB3Hz5FXg-zYsTcs3E2Jr-qY,6776
70
- dagster_cloud/storage/runs/storage.py,sha256=5yu0EvFgqjTfvONxaP_DQ8gKaMymC3MPSUQboLQO5KU,19979
71
- dagster_cloud/storage/schedules/__init__.py,sha256=BZhk8jNyiND0X8i85e6M-8l0kkDTAhpKvsNcsqq1JwE,70
72
- dagster_cloud/storage/schedules/queries.py,sha256=TnrMvk1rCSKG_gWcxYjGg27X9ie_AVU9350NLL3OR-k,1930
73
- dagster_cloud/storage/schedules/storage.py,sha256=tp9wNePmNKshVfTnqAXC-OzJjRL4nVZa8ERHluE20zs,7843
74
- dagster_cloud/util/__init__.py,sha256=BxfVi6l1X-8OWZUUn7A1Bhax7UaInU2O6-gCueBg8RU,2778
75
- dagster_cloud/util/container_resources.py,sha256=qkFiULrhvqSB4iLlL30bQpO_XjXrm5lNfMx8iFUYiR8,4693
76
- dagster_cloud/util/errors.py,sha256=QuzWZrtGgun10D67QkrI9MVAxEdnIdb8s1IRA_7hZE0,2288
77
- dagster_cloud/workspace/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
- dagster_cloud/workspace/config_schema/__init__.py,sha256=HOzrh1fN_95tXijAruP_lyveqnvVgl6RW_ArXsCfiCU,10918
79
- dagster_cloud/workspace/config_schema/docker.py,sha256=Xs7FDBVpIOMlWcKXrVWX_lSDgf9qpc9UpYcps1IdQDQ,967
80
- dagster_cloud/workspace/config_schema/ecs.py,sha256=NKB08hsYlowORvBHCrTqmKVbF67q1XDb-40s1phI5DE,6575
81
- dagster_cloud/workspace/config_schema/kubernetes.py,sha256=JIdZ5hX06hAw1lGT-5AcwZjfoKMnMj3PKjaQ9GDUL-U,5286
82
- dagster_cloud/workspace/docker/__init__.py,sha256=7iwhcK_LJFB3p4yTahCWjb_z06-_gD1woyLNZEbcPdY,13153
83
- dagster_cloud/workspace/docker/utils.py,sha256=80vo8QphKxgb47JqDBOMZxTHN_MxReCjYXpppmfiue4,352
84
- dagster_cloud/workspace/ecs/__init__.py,sha256=0GliAaE4NYzMD0ALQIG20cRM5ou77bj_FaiysgqoOKI,65
85
- dagster_cloud/workspace/ecs/client.py,sha256=C1VG2HivvtWUfpVOOlpXx23lDoj3_wgRDPx3vAMQvSs,29691
86
- dagster_cloud/workspace/ecs/launcher.py,sha256=vAX91gl1ud1gXsC6Qc1eo4L8Muuq-zhkv4PSjyYYryY,28996
87
- dagster_cloud/workspace/ecs/run_launcher.py,sha256=bS-VyABqE48cNQs4hDD-eI-Gi0_w5uSzkUOXHpEiJGk,534
88
- dagster_cloud/workspace/ecs/service.py,sha256=v-puyDEg2BzHA3RJqEhH8V04bUAcrYIlPCH1SThvwWw,4126
89
- dagster_cloud/workspace/ecs/utils.py,sha256=GiwiqbmCTpY_T-4bi_toMZpXEFsugDIm8OO0UweG68Y,2746
90
- dagster_cloud/workspace/kubernetes/__init__.py,sha256=42YtKXth8ognW1yYL3KomqsMM2tS2wanD5xnxcC_roc,65
91
- dagster_cloud/workspace/kubernetes/launcher.py,sha256=yd6UW_3xfekynge06HVmp9UXGOihgf7OvfgrQUWqFyY,26768
92
- dagster_cloud/workspace/kubernetes/utils.py,sha256=JcklaXwp8cO-roFX8fYNSTmi6d0aLJD2rQeN4rSavuE,11557
93
- dagster_cloud/workspace/user_code_launcher/__init__.py,sha256=6ib1U47aqB4R9BbzJVKR8cAy16RVg5VHRxsUoON1_FQ,745
94
- dagster_cloud/workspace/user_code_launcher/process.py,sha256=51ROSbChdyrOOZewI7vA8TjuOuDaC-MGYWqkZKmZUt0,14252
95
- dagster_cloud/workspace/user_code_launcher/user_code_launcher.py,sha256=iGwNo0Xnhn3nj8D47Weqjpe5SzmGxY-F7LwFiRUd3VA,87233
96
- dagster_cloud/workspace/user_code_launcher/utils.py,sha256=wzfEytoggCJRxpNGGI7Xgd4LeDy0oZndS_yaeKLv-gA,1209
97
- dagster_cloud-1.8.2.dist-info/METADATA,sha256=8pXFsqhqTPzaRxrI2nZC3jRm20P7XWXygVbveoQwKQk,6284
98
- dagster_cloud-1.8.2.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
99
- dagster_cloud-1.8.2.dist-info/top_level.txt,sha256=2hMt-U33jyCgnywNrDB9Ih0EpaVmiO6dFkYcJ7Iwx4I,14
100
- dagster_cloud-1.8.2.dist-info/RECORD,,