rs_workflows/payload_generator.md
This module contains functions to generate DPR payloads for RS-Server.
build_input_products(unit, dpr_process_in, store_params, catalog_client)
Builds the list of input product configurations for a workflow step.
Each input product is resolved by matching the dpr process definition against the unit configuration and querying the STAC catalog for its asset path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
unit
|
dict
|
Workflow unit definition containing input product metadata. |
required |
dpr_process_in
|
DprProcessIn
|
Input configuration for the dpr processing prefect flow. |
required |
store_params
|
StoreParams
|
Storage configuration parameters (S3 credentials, etc.).TODO ! as |
required |
written in the comment from story 800, point 3
|
About the storage_configuration.json : for the time being, |
required | |
catalog_client
|
CatalogClient
|
Client for querying STAC collections and items. |
required |
Returns:
| Type | Description |
|---|---|
list[InputProduct]
|
list[InputProduct]: A list of input product configuration objects. |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If an expected input product or STAC item cannot be found. |
Source code in docs/rs-client-libraries/rs_workflows/payload_generator.py
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 | |
build_mockup_payload(owner_id)
Builds a mock payload schema for testing or demonstration purposes.
This function generates a simplified PayloadSchema structure used for validating data processing pipeline integration without invoking actual DPR (Data Processing Request) logic. It creates one mock workflow step, one input product, and two output products pointing to the specified S3 output location.
The resulting payload emulates a minimal working configuration for a single-unit processor named mockup_processor, with placeholder input and output data paths.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
s3_output_data
|
str
|
S3 path (e.g., 's3://bucket/output/path') representing the output location for the mock products. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
PayloadSchema |
A fully populated payload schema containing: - A single workflow step (mockup_processor) - One mock input product (S3ACADUS) - Two mock output products (S3MWRL0_, S3OLCL0_) - A default general configuration section - No adfs (sets it to []) |
Notes
- This mock payload is typically used for testing DPR endpoints or integration pipelines when real input data or cluster processing is not required.
- The 'dask_context' section is intentionally omitted, as it is expected to be injected later by the DPR service layer.
Source code in docs/rs-client-libraries/rs_workflows/payload_generator.py
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 | |
build_output_products(unit, dpr_process_in, store_params, flow_env, config_rows)
Builds the list of output product configurations for a workflow step.
Each output product is mapped to an appropriate S3 bucket, determined by the owner ID, collection, and product type according to the configuration file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
unit
|
dict
|
Workflow unit definition containing output product metadata. |
required |
dpr_process_in
|
DprProcessIn
|
Input configuration defining generated outputs. |
required |
store_params
|
StoreParams
|
Storage configuration parameters. TODO ! as |
required |
written in the comment from story 800, point 3
|
About the storage_configuration.json : for the time being, |
required | |
flow_env
|
FlowEnv
|
Flow execution context, providing environment details like owner ID. |
required |
config_rows
|
list[list[str]]
|
Parsed S3 bucket configuration entries. |
required |
Returns:
| Type | Description |
|---|---|
list[OutputProduct]
|
list[OutputProduct]: A list of output product configuration objects. |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If an output mapping or configuration rule cannot be found. |
Source code in docs/rs-client-libraries/rs_workflows/payload_generator.py
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | |
build_workflow_step(unit)
Constructs a WorkflowStep instance from a unit configuration dictionary.
This function parses the given processing unit definition, extracting input products, auxiliary data files (ADFs), and output products. It then returns a WorkflowStep object ready to be integrated into a full processing payload schema.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
unit
|
dict
|
A dictionary defining a single workflow unit. Expected keys include: - "name" (str): The unit name. - "module" (str): The module path or identifier. - "input_products" (list[dict], optional): List of input product mappings. - "input_adfs" (list[dict], optional): List of auxiliary data files. - "output_products" (list[dict], optional): List of output product mappings. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
WorkflowStep |
A fully initialized workflow step object. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If a required key is missing from the provided unit dictionary. |
Source code in docs/rs-client-libraries/rs_workflows/payload_generator.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | |
fetch_csv_from_endpoint(endpoint)
Fetches a CSV file from rs-osam endpoint and returns it as a list of rows (each row is a list of strings).
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If the endpoint cannot be reached |
Source code in docs/rs-client-libraries/rs_workflows/payload_generator.py
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | |
find_s3_output_bucket(config_rows, owner_id, output_collection, product_type)
" Determines the appropriate S3 output bucket based on owner, collection, and product type. It is based on story 854
The matching logic prioritizes
- Exact owner and collection match.
- Otherwise, the first row matching via wildcard pattern ('*').
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_rows
|
list[list[str]]
|
Parsed configuration rows from the configmap file. |
required |
owner_id
|
str
|
Owner identifier of the processing job. |
required |
output_collection
|
str
|
Collection name associated with the output. |
required |
product_type
|
str
|
Product type identifier (e.g., 'S3OLC', 'S3MWR'). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
The resolved S3 bucket name (from the fifth column of the configmap). |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If no matching bucket is found in the configuration. |
Source code in docs/rs-client-libraries/rs_workflows/payload_generator.py
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | |
generate_payload(flow_env, unit_list, adfs, dpr_process_in)
Assembles and generates a payload schema for a DPR (Data Processing Request) job.
This Prefect task builds the payload definition dynamically based on the provided workflow units, auxiliary data files, and input configuration. It produces a PayloadSchema object compatible with RS-Server DPR jobs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
env
|
FlowEnv
|
Environment configuration for the Prefect flow, including credentials, tracing, and runtime context. |
required |
unit_list
|
list[dict]
|
List of workflow unit definitions containing I/O specifications and processing parameters. |
required |
adfs
|
list[tuple[str, str]]
|
List of auxiliary item tuples, where each tuple includes the eopf type and the s3 storage path. |
required |
dpr_process_in
|
DprProcessIn
|
DPR input process definition containing product paths and parameters. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
PayloadSchema
|
A dictionary representation of the generated PayloadSchema. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If a required key is missing in one of the unit definitions. |
Exception
|
For any unexpected error during payload assembly. |
Source code in docs/rs-client-libraries/rs_workflows/payload_generator.py
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 | |
get_first_asset_dir(item)
Returns the local or remote path component from the href of the first asset in a pystac Item.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
item
|
Item
|
The STAC item containing assets. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str | None
|
str | None: The path component of the first asset's href, or None if no assets exist. |
|
Examples |
str | None
|
s3://dev-bucket/path/to/cadu.raw -> s3://dev-bucket/path/to /local/path/to/file.raw -> /local/path/to https://example.com/data/file.tif -> https://example.com/data |
Source code in docs/rs-client-libraries/rs_workflows/payload_generator.py
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | |
get_io(unit, dpr_process_in, store_params, flow_env)
Builds both input and output product configurations for a given workflow step.
This function integrates configuration data from
- The workflow unit definition ('unit')
- The DPR process input ('dpr_process_in')
- The environment and S3 configuration (via 'flow_env' and configmap)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
unit
|
dict
|
Workflow unit definition containing I/O product configurations. |
required |
dpr_process_in
|
DprProcessIn
|
DPR input configuration containing product mappings. |
required |
store_params
|
StoreParams
|
S3 storage configuration and credentials. TODO ! as |
required |
written in the comment from story 800, point 3
|
About the storage_configuration.json : for the time being, |
required | |
flow_env
|
FlowEnv
|
Environment context holding execution metadata. |
required |
Returns:
| Type | Description |
|---|---|
tuple[list, list]
|
tuple[list[InputProduct], list[OutputProduct]]: A tuple containing lists of input and output product objects ready for inclusion in a payload schema. |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If the configuration file cannot be read or an input/output product cannot be resolved. |
Source code in docs/rs-client-libraries/rs_workflows/payload_generator.py
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 | |
load_store_params_from_config(config_path='/etc/storage_configuration.json')
Loads storage configuration from a JSON file and constructs a StoreParams object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_path
|
str
|
Path to the storage configuration JSON file. Defaults to '/etc/storage_configuration.json'. |
'/etc/storage_configuration.json'
|
Returns:
| Name | Type | Description |
|---|---|---|
StoreParams |
StoreParams
|
The StoreParams object built from the configuration file. |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If the JSON file does not exist. |
ValueError
|
If the JSON structure is invalid or missing required fields. |
Source code in docs/rs-client-libraries/rs_workflows/payload_generator.py
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 | |
resolve_stac_input_path(catalog_client, collection, stac_item_id)
Retrieves the S3 path of the first asset from a STAC item within a collection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
catalog_client
|
CatalogClient
|
Client instance used to query the STAC catalog. |
required |
collection
|
str
|
The collection identifier in the catalog. |
required |
stac_item_id
|
str
|
The STAC item identifier to resolve. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
The path to the first asset of the specified STAC item. |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If the STAC item is missing or contains no assets. |
Source code in docs/rs-client-libraries/rs_workflows/payload_generator.py
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 | |
wildcard_match(string, pattern)
Checks whether a given string matches a simple wildcard pattern.
The wildcard character '' is treated as a placeholder for any substring. For example: - 'abcdef' matches 'abcdef' and 'abcXYZdef'. - 'xyz' matches 'endxyz'. - '' matches any string.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
string
|
str
|
The string to check against the pattern. |
required |
pattern
|
str
|
The wildcard pattern, which may include '*'. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
True if the string matches the pattern, False otherwise. |
Source code in docs/rs-client-libraries/rs_workflows/payload_generator.py
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | |