Skip to content

Commit a407db5

Browse files
committed
Add example
1 parent a07ea68 commit a407db5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

extensions/processing-parameters/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,20 @@ The values of the object are the default values for the parameters.
4646
Schematic restrictions are not defined for the object, but the schemas for the parameters as defined in `GET /processing_parameters` apply to the given values.
4747
These values provide the defaults unless a user overrides them in the actual data processing request (e.g. `POST /jobs`, see below).
4848

49+
Example UDP including defaults for the processing parameters `memory` and `block-sizes` of a batch job:
50+
51+
```json
52+
{
53+
"id": "my_evi",
54+
"parameters": [...],
55+
"process_graph": {...},
56+
"default_job_options": {
57+
"memory": "2GB",
58+
"block-sizes": [128, 32]
59+
}
60+
}
61+
```
62+
4963
## Resolving parameters
5064

5165
Due to the variety of places where processing parameters can be provided, the following

0 commit comments

Comments
 (0)