dkist-processing-test 1.35.1__py3-none-any.whl → 1.36.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of dkist-processing-test might be problematic. Click here for more details.

@@ -40,25 +40,25 @@ class GenerateCalibratedData(WorkflowTaskBase):
40
40
 
41
41
  def run(self):
42
42
  rng = np.random.default_rng()
43
- with self.apm_task_step("Create debug frame"):
43
+ with self.telemetry_span("Create debug frame"):
44
44
  self.write(
45
45
  data=np.arange(10), tags=[Tag.frame(), Tag.debug()], encoder=fits_array_encoder
46
46
  )
47
47
 
48
- with self.apm_task_step("Creating intermediate frame"):
48
+ with self.telemetry_span("Creating intermediate frame"):
49
49
  self.write(
50
50
  data=np.arange(5),
51
51
  tags=[Tag.frame(), Tag.intermediate(), Tag.task("DUMMY")],
52
52
  encoder=fits_array_encoder,
53
53
  )
54
54
 
55
- with self.apm_task_step("Creating unique frames"):
55
+ with self.telemetry_span("Creating unique frames"):
56
56
  for _ in range(2):
57
57
  self.write(data=np.arange(3), tags=["FOO", "BAR"], encoder=fits_array_encoder)
58
58
 
59
59
  self.write(data={"test": "dictionary"}, tags=["BAZ"], encoder=json_encoder)
60
60
 
61
- with self.apm_task_step(
61
+ with self.telemetry_span(
62
62
  "Creating frames that won't be used or transferred as trial outputs"
63
63
  ):
64
64
  self.write(data=b"123", tags=[Tag.intermediate(), Tag.task("NOT_USED"), Tag.frame()])
@@ -67,11 +67,11 @@ class GenerateCalibratedData(WorkflowTaskBase):
67
67
  logger.info(f"Using {self.parameters.value_message = }")
68
68
  logger.info(f"Using {self.parameters.file_message = }")
69
69
 
70
- with self.apm_task_step("Loop over inputs"):
70
+ with self.telemetry_span("Loop over inputs"):
71
71
  count = 1 # keep a running count to increment the dsps repeat number
72
72
  for hdu in self.read(tags=Tag.input(), decoder=fits_hdu_decoder):
73
73
  header = hdu.header
74
- with self.apm_processing_step("Doing some calculations"):
74
+ with self.telemetry_span("Doing some calculations"):
75
75
  header["DSPSNUM"] = count
76
76
  data = hdu.data
77
77
 
@@ -96,7 +96,7 @@ class GenerateCalibratedData(WorkflowTaskBase):
96
96
  wavelength_category = self.parameters.wavelength_category
97
97
  header["WAVECAT"] = wavelength_category
98
98
 
99
- with self.apm_writing_step("Writing data"):
99
+ with self.telemetry_span("Writing data"):
100
100
  output_hdul = fits.HDUList([output_hdu])
101
101
  self.write(
102
102
  data=output_hdul,
@@ -10,7 +10,7 @@ __all__ = ["ManualWithProvenance", "ManualWithoutProvenance"]
10
10
 
11
11
  class ManualBase(WorkflowTaskBase):
12
12
  def run(self):
13
- with self.apm_task_step("NoOp"):
13
+ with self.telemetry_span("NoOp"):
14
14
  pass
15
15
 
16
16
 
@@ -23,7 +23,7 @@ class MakeTestMovieFrames(WorkflowTaskBase):
23
23
 
24
24
  def run(self):
25
25
  for d in range(1, self.constants.num_dsps_repeats + 1):
26
- with self.apm_task_step(f"Workign on dsps repeat {d}"):
26
+ with self.telemetry_span(f"Workign on dsps repeat {d}"):
27
27
  for hdu in self.read(
28
28
  tags=[Tag.calibrated(), Tag.dsps_repeat(d)], decoder=fits_hdu_decoder
29
29
  ):
@@ -32,7 +32,7 @@ class MakeTestMovieFrames(WorkflowTaskBase):
32
32
  output_hdu = fits.PrimaryHDU(data=data, header=header)
33
33
  output_hdul = fits.HDUList([output_hdu])
34
34
 
35
- with self.apm_writing_step("Writing data"):
35
+ with self.telemetry_span("Writing data"):
36
36
  self.write(
37
37
  data=output_hdul,
38
38
  tags=[Tag.movie_frame(), Tag.dsps_repeat(d)],
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dkist-processing-test
3
- Version: 1.35.1
3
+ Version: 1.36.0
4
4
  Summary: Example instrument code used by the DKIST science data processing pipelines to test processing infrastructure
5
5
  Author-email: NSO / AURA <dkistdc@nso.edu>
6
6
  License: BSD-3-Clause
@@ -12,9 +12,9 @@ Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Programming Language :: Python :: 3.12
13
13
  Requires-Python: >=3.12
14
14
  Description-Content-Type: text/x-rst
15
- Requires-Dist: dkist-processing-common==11.5.1
15
+ Requires-Dist: dkist-processing-common==11.6.0
16
16
  Requires-Dist: dkist-header-validator==5.2.1
17
- Requires-Dist: dkist-service-configuration==2.3.0
17
+ Requires-Dist: dkist-service-configuration==4.1.7
18
18
  Requires-Dist: dkist-fits-specifications==4.17.0
19
19
  Requires-Dist: numba==0.61.2
20
20
  Requires-Dist: astropy==7.0.2
@@ -54,55 +54,56 @@ Requires-Dist: Jinja2==3.1.6; extra == "frozen"
54
54
  Requires-Dist: Mako==1.3.10; extra == "frozen"
55
55
  Requires-Dist: MarkupSafe==3.0.2; extra == "frozen"
56
56
  Requires-Dist: PyJWT==2.10.1; extra == "frozen"
57
- Requires-Dist: PyYAML==6.0.2; extra == "frozen"
57
+ Requires-Dist: PyYAML==6.0.3; extra == "frozen"
58
58
  Requires-Dist: Pygments==2.19.2; extra == "frozen"
59
59
  Requires-Dist: SQLAlchemy==1.4.54; extra == "frozen"
60
60
  Requires-Dist: SQLAlchemy-JSONField==1.0.2; extra == "frozen"
61
61
  Requires-Dist: SQLAlchemy-Utils==0.42.0; extra == "frozen"
62
62
  Requires-Dist: WTForms==3.2.1; extra == "frozen"
63
63
  Requires-Dist: Werkzeug==2.2.3; extra == "frozen"
64
- Requires-Dist: aioftp==0.26.2; extra == "frozen"
64
+ Requires-Dist: aioftp==0.27.2; extra == "frozen"
65
65
  Requires-Dist: aiohappyeyeballs==2.6.1; extra == "frozen"
66
66
  Requires-Dist: aiohttp==3.12.15; extra == "frozen"
67
67
  Requires-Dist: aiosignal==1.4.0; extra == "frozen"
68
+ Requires-Dist: aiosmtplib==4.0.2; extra == "frozen"
68
69
  Requires-Dist: alembic==1.16.5; extra == "frozen"
69
70
  Requires-Dist: amqp==5.3.1; extra == "frozen"
70
71
  Requires-Dist: annotated-types==0.7.0; extra == "frozen"
71
- Requires-Dist: anyio==4.10.0; extra == "frozen"
72
+ Requires-Dist: anyio==4.11.0; extra == "frozen"
72
73
  Requires-Dist: apache-airflow==2.11.0; extra == "frozen"
73
74
  Requires-Dist: apache-airflow-providers-celery==3.10.0; extra == "frozen"
74
- Requires-Dist: apache-airflow-providers-common-compat==1.7.3; extra == "frozen"
75
- Requires-Dist: apache-airflow-providers-common-io==1.6.2; extra == "frozen"
76
- Requires-Dist: apache-airflow-providers-common-sql==1.28.0; extra == "frozen"
75
+ Requires-Dist: apache-airflow-providers-common-compat==1.7.4; extra == "frozen"
76
+ Requires-Dist: apache-airflow-providers-common-io==1.6.3; extra == "frozen"
77
+ Requires-Dist: apache-airflow-providers-common-sql==1.28.1; extra == "frozen"
77
78
  Requires-Dist: apache-airflow-providers-fab==1.5.3; extra == "frozen"
78
79
  Requires-Dist: apache-airflow-providers-ftp==3.13.2; extra == "frozen"
79
80
  Requires-Dist: apache-airflow-providers-http==5.3.4; extra == "frozen"
80
81
  Requires-Dist: apache-airflow-providers-imap==3.9.2; extra == "frozen"
81
82
  Requires-Dist: apache-airflow-providers-postgres==6.3.0; extra == "frozen"
82
- Requires-Dist: apache-airflow-providers-smtp==2.2.1; extra == "frozen"
83
+ Requires-Dist: apache-airflow-providers-smtp==2.3.0; extra == "frozen"
83
84
  Requires-Dist: apache-airflow-providers-sqlite==4.1.2; extra == "frozen"
84
- Requires-Dist: apispec==6.8.3; extra == "frozen"
85
+ Requires-Dist: apispec==6.8.4; extra == "frozen"
85
86
  Requires-Dist: argcomplete==3.6.2; extra == "frozen"
86
87
  Requires-Dist: asdf==3.5.0; extra == "frozen"
87
88
  Requires-Dist: asdf_standard==1.4.0; extra == "frozen"
88
89
  Requires-Dist: asdf_transform_schemas==0.6.0; extra == "frozen"
89
- Requires-Dist: asgiref==3.9.1; extra == "frozen"
90
+ Requires-Dist: asgiref==3.9.2; extra == "frozen"
90
91
  Requires-Dist: asteval==1.0.6; extra == "frozen"
91
92
  Requires-Dist: astropy==7.0.2; extra == "frozen"
92
- Requires-Dist: astropy-iers-data==0.2025.9.15.0.37.0; extra == "frozen"
93
+ Requires-Dist: astropy-iers-data==0.2025.9.22.0.37.25; extra == "frozen"
93
94
  Requires-Dist: asyncpg==0.30.0; extra == "frozen"
94
95
  Requires-Dist: attrs==25.3.0; extra == "frozen"
95
96
  Requires-Dist: babel==2.17.0; extra == "frozen"
96
- Requires-Dist: billiard==4.2.1; extra == "frozen"
97
+ Requires-Dist: billiard==4.2.2; extra == "frozen"
97
98
  Requires-Dist: blinker==1.9.0; extra == "frozen"
98
- Requires-Dist: boto3==1.40.32; extra == "frozen"
99
- Requires-Dist: botocore==1.40.32; extra == "frozen"
99
+ Requires-Dist: boto3==1.40.39; extra == "frozen"
100
+ Requires-Dist: botocore==1.40.39; extra == "frozen"
100
101
  Requires-Dist: cachelib==0.13.0; extra == "frozen"
101
102
  Requires-Dist: celery==5.3.1; extra == "frozen"
102
103
  Requires-Dist: certifi==2025.8.3; extra == "frozen"
103
104
  Requires-Dist: cffi==2.0.0; extra == "frozen"
104
105
  Requires-Dist: charset-normalizer==3.4.3; extra == "frozen"
105
- Requires-Dist: click==8.2.1; extra == "frozen"
106
+ Requires-Dist: click==8.3.0; extra == "frozen"
106
107
  Requires-Dist: click-didyoumean==0.3.1; extra == "frozen"
107
108
  Requires-Dist: click-plugins==1.1.1.2; extra == "frozen"
108
109
  Requires-Dist: click-repl==0.3.0; extra == "frozen"
@@ -119,27 +120,25 @@ Requires-Dist: dacite==1.9.2; extra == "frozen"
119
120
  Requires-Dist: decorator==5.2.1; extra == "frozen"
120
121
  Requires-Dist: dill==0.4.0; extra == "frozen"
121
122
  Requires-Dist: dkist-header-validator==5.2.1; extra == "frozen"
122
- Requires-Dist: dkist-processing-common==11.5.1; extra == "frozen"
123
- Requires-Dist: dkist-processing-core==5.2.1; extra == "frozen"
123
+ Requires-Dist: dkist-processing-common==11.6.0; extra == "frozen"
124
+ Requires-Dist: dkist-processing-core==6.0.0; extra == "frozen"
124
125
  Requires-Dist: dkist-processing-pac==3.1.1; extra == "frozen"
125
- Requires-Dist: dkist-processing-test==1.35.1; extra == "frozen"
126
- Requires-Dist: dkist-service-configuration==2.3.0; extra == "frozen"
126
+ Requires-Dist: dkist-processing-test==1.36.0; extra == "frozen"
127
+ Requires-Dist: dkist-service-configuration==4.1.7; extra == "frozen"
127
128
  Requires-Dist: dkist-spectral-lines==3.0.0; extra == "frozen"
128
129
  Requires-Dist: dkist_fits_specifications==4.17.0; extra == "frozen"
129
130
  Requires-Dist: dnspython==2.8.0; extra == "frozen"
130
- Requires-Dist: ecs-logging==2.2.0; extra == "frozen"
131
- Requires-Dist: elastic-apm==6.24.0; extra == "frozen"
132
131
  Requires-Dist: email-validator==2.3.0; extra == "frozen"
133
132
  Requires-Dist: fastjsonschema==2.21.2; extra == "frozen"
134
133
  Requires-Dist: flower==2.0.1; extra == "frozen"
135
134
  Requires-Dist: fonttools==4.60.0; extra == "frozen"
136
135
  Requires-Dist: frozenlist==1.7.0; extra == "frozen"
137
136
  Requires-Dist: fsspec==2025.9.0; extra == "frozen"
138
- Requires-Dist: globus-sdk==3.63.0; extra == "frozen"
137
+ Requires-Dist: globus-sdk==3.64.0; extra == "frozen"
139
138
  Requires-Dist: google-re2==1.1.20250805; extra == "frozen"
140
139
  Requires-Dist: googleapis-common-protos==1.70.0; extra == "frozen"
141
140
  Requires-Dist: gqlclient==1.2.3; extra == "frozen"
142
- Requires-Dist: grpcio==1.75.0; extra == "frozen"
141
+ Requires-Dist: grpcio==1.75.1; extra == "frozen"
143
142
  Requires-Dist: gunicorn==23.0.0; extra == "frozen"
144
143
  Requires-Dist: h11==0.16.0; extra == "frozen"
145
144
  Requires-Dist: httpcore==1.0.9; extra == "frozen"
@@ -184,9 +183,25 @@ Requires-Dist: opentelemetry-exporter-otlp==1.37.0; extra == "frozen"
184
183
  Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.37.0; extra == "frozen"
185
184
  Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.37.0; extra == "frozen"
186
185
  Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.37.0; extra == "frozen"
186
+ Requires-Dist: opentelemetry-instrumentation==0.58b0; extra == "frozen"
187
+ Requires-Dist: opentelemetry-instrumentation-aiohttp-client==0.58b0; extra == "frozen"
188
+ Requires-Dist: opentelemetry-instrumentation-asgi==0.58b0; extra == "frozen"
189
+ Requires-Dist: opentelemetry-instrumentation-botocore==0.58b0; extra == "frozen"
190
+ Requires-Dist: opentelemetry-instrumentation-celery==0.58b0; extra == "frozen"
191
+ Requires-Dist: opentelemetry-instrumentation-dbapi==0.58b0; extra == "frozen"
192
+ Requires-Dist: opentelemetry-instrumentation-fastapi==0.58b0; extra == "frozen"
193
+ Requires-Dist: opentelemetry-instrumentation-pika==0.58b0; extra == "frozen"
194
+ Requires-Dist: opentelemetry-instrumentation-psycopg2==0.58b0; extra == "frozen"
195
+ Requires-Dist: opentelemetry-instrumentation-pymongo==0.58b0; extra == "frozen"
196
+ Requires-Dist: opentelemetry-instrumentation-redis==0.58b0; extra == "frozen"
197
+ Requires-Dist: opentelemetry-instrumentation-requests==0.58b0; extra == "frozen"
198
+ Requires-Dist: opentelemetry-instrumentation-sqlalchemy==0.58b0; extra == "frozen"
199
+ Requires-Dist: opentelemetry-instrumentation-system-metrics==0.58b0; extra == "frozen"
200
+ Requires-Dist: opentelemetry-propagator-aws-xray==1.0.2; extra == "frozen"
187
201
  Requires-Dist: opentelemetry-proto==1.37.0; extra == "frozen"
188
202
  Requires-Dist: opentelemetry-sdk==1.37.0; extra == "frozen"
189
203
  Requires-Dist: opentelemetry-semantic-conventions==0.58b0; extra == "frozen"
204
+ Requires-Dist: opentelemetry-util-http==0.58b0; extra == "frozen"
190
205
  Requires-Dist: ordered-set==4.1.0; extra == "frozen"
191
206
  Requires-Dist: packaging==25.0; extra == "frozen"
192
207
  Requires-Dist: pandas==2.3.2; extra == "frozen"
@@ -201,18 +216,18 @@ Requires-Dist: pluggy==1.6.0; extra == "frozen"
201
216
  Requires-Dist: pooch==1.8.2; extra == "frozen"
202
217
  Requires-Dist: prison==0.2.1; extra == "frozen"
203
218
  Requires-Dist: proglog==0.1.12; extra == "frozen"
204
- Requires-Dist: prometheus_client==0.22.1; extra == "frozen"
219
+ Requires-Dist: prometheus_client==0.23.1; extra == "frozen"
205
220
  Requires-Dist: prompt_toolkit==3.0.52; extra == "frozen"
206
221
  Requires-Dist: propcache==0.3.2; extra == "frozen"
207
222
  Requires-Dist: protobuf==6.32.1; extra == "frozen"
208
- Requires-Dist: psutil==7.0.0; extra == "frozen"
223
+ Requires-Dist: psutil==7.1.0; extra == "frozen"
209
224
  Requires-Dist: psycopg2-binary==2.9.10; extra == "frozen"
210
225
  Requires-Dist: pycparser==2.23; extra == "frozen"
211
226
  Requires-Dist: pydantic==2.11.9; extra == "frozen"
212
- Requires-Dist: pydantic-settings==2.10.1; extra == "frozen"
227
+ Requires-Dist: pydantic-settings==2.11.0; extra == "frozen"
213
228
  Requires-Dist: pydantic_core==2.33.2; extra == "frozen"
214
229
  Requires-Dist: pyerfa==2.0.1.5; extra == "frozen"
215
- Requires-Dist: pyparsing==3.2.4; extra == "frozen"
230
+ Requires-Dist: pyparsing==3.2.5; extra == "frozen"
216
231
  Requires-Dist: python-daemon==3.1.2; extra == "frozen"
217
232
  Requires-Dist: python-dateutil==2.9.0.post0; extra == "frozen"
218
233
  Requires-Dist: python-dotenv==1.1.1; extra == "frozen"
@@ -236,7 +251,7 @@ Requires-Dist: sniffio==1.3.1; extra == "frozen"
236
251
  Requires-Dist: solar-wavelength-calibration==1.0.1; extra == "frozen"
237
252
  Requires-Dist: sqids==0.5.1; extra == "frozen"
238
253
  Requires-Dist: sqlparse==0.5.3; extra == "frozen"
239
- Requires-Dist: sunpy==7.0.1; extra == "frozen"
254
+ Requires-Dist: sunpy==7.0.2; extra == "frozen"
240
255
  Requires-Dist: tabulate==0.9.0; extra == "frozen"
241
256
  Requires-Dist: talus==1.3.4; extra == "frozen"
242
257
  Requires-Dist: tenacity==8.5.0; extra == "frozen"
@@ -254,7 +269,7 @@ Requires-Dist: universal_pathlib==0.2.6; extra == "frozen"
254
269
  Requires-Dist: urllib3==2.5.0; extra == "frozen"
255
270
  Requires-Dist: vine==5.1.0; extra == "frozen"
256
271
  Requires-Dist: voluptuous==0.15.2; extra == "frozen"
257
- Requires-Dist: wcwidth==0.2.13; extra == "frozen"
272
+ Requires-Dist: wcwidth==0.2.14; extra == "frozen"
258
273
  Requires-Dist: wirerope==1.0.0; extra == "frozen"
259
274
  Requires-Dist: wrapt==1.17.3; extra == "frozen"
260
275
  Requires-Dist: yamale==6.0.0; extra == "frozen"
@@ -290,7 +305,81 @@ the process detailed in `dkist-processing-core <https://pypi.org/project/dkist-p
290
305
 
291
306
  Environment Variables
292
307
  ---------------------
293
- Only those specified by `dkist-processing-core <https://pypi.org/project/dkist-processing-core/>`_ and `dkist-processing-common <https://pypi.org/project/dkist-processing-common/>`_
308
+
309
+ .. list-table::
310
+ :widths: 10 90
311
+ :header-rows: 1
312
+
313
+ * - Variable
314
+ - Field Info
315
+ * - LOGURU_LEVEL
316
+ - annotation=str required=False default='INFO' alias_priority=2 validation_alias='LOGURU_LEVEL' description='Log level for the application'
317
+ * - MESH_CONFIG
318
+ - annotation=dict[str, MeshService] required=False default_factory=dict alias_priority=2 validation_alias='MESH_CONFIG' description='Service mesh configuration' examples=[{'upstream_service_name': {'mesh_address': 'localhost', 'mesh_port': 6742}}]
319
+ * - RETRY_CONFIG
320
+ - annotation=RetryConfig required=False default_factory=RetryConfig description='Retry configuration for the service'
321
+ * - OTEL_SERVICE_NAME
322
+ - annotation=str required=False default='unknown-service-name' alias_priority=2 validation_alias='OTEL_SERVICE_NAME' description='Service name for OpenTelemetry'
323
+ * - DKIST_SERVICE_VERSION
324
+ - annotation=str required=False default='unknown-service-version' alias_priority=2 validation_alias='DKIST_SERVICE_VERSION' description='Service version for OpenTelemetry'
325
+ * - NOMAD_ALLOC_ID
326
+ - annotation=str required=False default='unknown-allocation-id' alias_priority=2 validation_alias='NOMAD_ALLOC_ID' description='Nomad allocation ID for OpenTelemetry'
327
+ * - OTEL_EXPORTER_OTLP_TRACES_INSECURE
328
+ - annotation=bool required=False default=True description='Use insecure connection for OTLP traces'
329
+ * - OTEL_EXPORTER_OTLP_METRICS_INSECURE
330
+ - annotation=bool required=False default=True description='Use insecure connection for OTLP metrics'
331
+ * - OTEL_EXPORTER_OTLP_TRACES_ENDPOINT
332
+ - annotation=Union[str, NoneType] required=False default=None description='OTLP traces endpoint. Overrides mesh configuration' examples=['localhost:4317']
333
+ * - OTEL_EXPORTER_OTLP_METRICS_ENDPOINT
334
+ - annotation=Union[str, NoneType] required=False default=None description='OTLP metrics endpoint. Overrides mesh configuration' examples=['localhost:4317']
335
+ * - OTEL_PYTHON_DISABLED_INSTRUMENTATIONS
336
+ - annotation=list[str] required=False default_factory=list description='List of instrumentations to disable. https://opentelemetry.io/docs/zero-code/python/configuration/' examples=[['pika', 'requests']]
337
+ * - OTEL_PYTHON_FASTAPI_EXCLUDED_URLS
338
+ - annotation=str required=False default='health' description='Comma separated list of URLs to exclude from OpenTelemetry instrumentation in FastAPI.' examples=['client/.*/info,healthcheck']
339
+ * - SYSTEM_METRIC_INSTRUMENTATION_CONFIG
340
+ - annotation=Union[dict[str, bool], NoneType] required=False default=None description='Configuration for system metric instrumentation. https://opentelemetry-python-contrib.readthedocs.io/en/latest/instrumentation/system_metrics/system_metrics.html' examples=[{'system.memory.usage': ['used', 'free', 'cached'], 'system.cpu.time': ['idle', 'user', 'system', 'irq'], 'system.network.io': ['transmit', 'receive'], 'process.runtime.memory': ['rss', 'vms'], 'process.runtime.cpu.time': ['user', 'system'], 'process.runtime.context_switches': ['involuntary', 'voluntary']}]
341
+ * - ISB_USERNAME
342
+ - annotation=str required=False default='guest' description='Username for the interservice-bus.'
343
+ * - ISB_PASSWORD
344
+ - annotation=str required=False default='guest' description='Password for the interservice-bus.'
345
+ * - ISB_EXCHANGE
346
+ - annotation=str required=False default='master.direct.x' description='Exchange for the interservice-bus.'
347
+ * - ISB_QUEUE_TYPE
348
+ - annotation=str required=False default='classic' description='Queue type for the interservice-bus.' examples=['quorum', 'classic']
349
+ * - BUILD_VERSION
350
+ - annotation=str required=False default='dev' description='Fallback build version for workflow tasks.'
351
+ * - GQL_AUTH_TOKEN
352
+ - annotation=Union[str, NoneType] required=False default='dev' description='The auth token for the metadata-store-api.'
353
+ * - OBJECT_STORE_ACCESS_KEY
354
+ - annotation=Union[str, NoneType] required=False default=None description='The access key for the object store.'
355
+ * - OBJECT_STORE_SECRET_KEY
356
+ - annotation=Union[str, NoneType] required=False default=None description='The secret key for the object store.'
357
+ * - OBJECT_STORE_USE_SSL
358
+ - annotation=bool required=False default=False description='Whether to use SSL for the object store connection.'
359
+ * - MULTIPART_THRESHOLD
360
+ - annotation=Union[int, NoneType] required=False default=None description='Multipart threshold for the object store.'
361
+ * - S3_CLIENT_CONFIG
362
+ - annotation=Union[dict, NoneType] required=False default=None description='S3 client configuration for the object store.'
363
+ * - S3_UPLOAD_CONFIG
364
+ - annotation=Union[dict, NoneType] required=False default=None description='S3 upload configuration for the object store.'
365
+ * - S3_DOWNLOAD_CONFIG
366
+ - annotation=Union[dict, NoneType] required=False default=None description='S3 download configuration for the object store.'
367
+ * - GLOBUS_TRANSPORT_PARAMS
368
+ - annotation=dict required=False default_factory=dict description='Globus transfer parameters.'
369
+ * - GLOBUS_CLIENT_ID
370
+ - annotation=Union[str, NoneType] required=False default=None description='Globus client ID for inbound/outbound transfers.'
371
+ * - GLOBUS_CLIENT_SECRET
372
+ - annotation=Union[str, NoneType] required=False default=None description='Globus client secret for inbound/outbound transfers.'
373
+ * - OBJECT_STORE_ENDPOINT
374
+ - annotation=Union[str, NoneType] required=False default=None description='Object store Globus Endpoint ID.'
375
+ * - SCRATCH_ENDPOINT
376
+ - annotation=Union[str, NoneType] required=False default=None description='Scratch Globus Endpoint ID.'
377
+ * - SCRATCH_BASE_PATH
378
+ - annotation=str required=False default='scratch/' description='Base path for scratch storage.'
379
+ * - SCRATCH_INVENTORY_DB_COUNT
380
+ - annotation=int required=False default=16 description='Number of databases in the scratch inventory (redis).'
381
+ * - DOCS_BASE_URL
382
+ - annotation=str required=False default='my_test_url' description='Base URL for the documentation site.'
294
383
 
295
384
  Development
296
385
  -----------
@@ -6,10 +6,10 @@ dkist_processing_test/models/parameters.py,sha256=2iUGkp0AWfvyAvG6iaug5gINlqRG9R
6
6
  dkist_processing_test/tasks/__init__.py,sha256=mzbjxWY9fdNKUyfXDC_vXuSaB7G0-iwrumCUlq6keoA,457
7
7
  dkist_processing_test/tasks/exercise_numba.py,sha256=Sml9M5-B8VH6QUVuOyovSDu2-nenUntyvMMbXlI4jO4,1438
8
8
  dkist_processing_test/tasks/fail.py,sha256=SVsKR-OCeeFYuDf8ktW-hx4fwcQEIYCBCM68kw3uCRM,246
9
- dkist_processing_test/tasks/fake_science.py,sha256=JrwVlJsUlEP1SLKim_9eoKR0SZd1PtFcauTkPrSvamg,4448
9
+ dkist_processing_test/tasks/fake_science.py,sha256=8rj_lCxk0fur7UhkAC_RydxXpYTV6F91sC3G91jJ2Ko,4446
10
10
  dkist_processing_test/tasks/high_memory.py,sha256=FOWseexCge7VLAh9B6WKEl1js6txtpU1BI3JxU35ClU,541
11
- dkist_processing_test/tasks/manual.py,sha256=BZEfwjVqLWcho_C-KVCkR9FDzDXq2R5pynHXfL5VW34,583
12
- dkist_processing_test/tasks/movie.py,sha256=Cd3vquoVkh0uBn_r170JszTsAVh89WZACi3HRKZn2kU,1831
11
+ dkist_processing_test/tasks/manual.py,sha256=7sN9WVl16ewGsnd82Qkf2ojKb3vz1e3RQKM-7eqHNAU,584
12
+ dkist_processing_test/tasks/movie.py,sha256=ZQmT8UVK3t1PnpoHuZtHIWM_yEk4EbSvwVzNZpkxSfE,1830
13
13
  dkist_processing_test/tasks/noop.py,sha256=xz-T_uCIvvA70t8gMSk8WYJBDpmyBfFF8KUigrEKXM4,236
14
14
  dkist_processing_test/tasks/parse.py,sha256=wW47L0cY5cX0B4C6srSAwxuDz28uTM_IcxjoBFxBauY,2313
15
15
  dkist_processing_test/tasks/quality.py,sha256=LHvcSjAgwDQx3nlcG1v-5WlMA9aCY1pANxyxQraJyJI,896
@@ -26,7 +26,7 @@ dkist_processing_test/workflows/fail.py,sha256=rWNnqYb5Nl98GTbpECJvf4z2TBcU0UTZ5
26
26
  dkist_processing_test/workflows/noop.py,sha256=vXR0fVRyEAiFQMukjYoVwPYUJxcRJaMh_rUGJqJDDL0,666
27
27
  dkist_processing_test/workflows/resource_queue.py,sha256=IcNuaN1O0-SLf1KMsnH6RFcXr_6r2Jc8ddr9o-lXs9c,500
28
28
  dkist_processing_test/workflows/trial_end_to_end.py,sha256=pm_yz8tmp8rfvN0-84VZW_LeOFEUVjfFE5pGMZLCLW8,2416
29
- dkist_processing_test-1.35.1.dist-info/METADATA,sha256=hXXWd46WhrQMQQl0c1VxOTB2GOT3RHOD8vTgPzqWttI,16422
30
- dkist_processing_test-1.35.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
31
- dkist_processing_test-1.35.1.dist-info/top_level.txt,sha256=Hs4oTIrG_r-svhk_RGFTEO4e3vqQoYlBzdv5mvJVF24,22
32
- dkist_processing_test-1.35.1.dist-info/RECORD,,
29
+ dkist_processing_test-1.36.0.dist-info/METADATA,sha256=y5ofKEKMsnmm7-Q2jeSca89GYeujSpSy7cB-WZhiq7k,23515
30
+ dkist_processing_test-1.36.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
31
+ dkist_processing_test-1.36.0.dist-info/top_level.txt,sha256=Hs4oTIrG_r-svhk_RGFTEO4e3vqQoYlBzdv5mvJVF24,22
32
+ dkist_processing_test-1.36.0.dist-info/RECORD,,