You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/processing-parameters/README.md
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,20 @@ The values of the object are the default values for the parameters.
46
46
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.
47
47
These values provide the defaults unless a user overrides them in the actual data processing request (e.g. `POST /jobs`, see below).
48
48
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
+
49
63
## Resolving parameters
50
64
51
65
Due to the variety of places where processing parameters can be provided, the following
0 commit comments