Skip to content

Commit

Permalink
Added worker run_mode to model_settings (#86)
Browse files Browse the repository at this point in the history
* Added run_mode to model_settings

* Match enum with plarform internal values, so `V1` not `v1`

* Fix desc
  • Loading branch information
sambles authored Jan 24, 2024
1 parent 32731cb commit 29a621e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions ods_tools/data/model_settings_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@
"description":"The version ID for the model. (optional)",
"minLength":1
},
"model_run_mode": {
"type":"string",
"title":"Model Run Model",
"description":"OasisPlatform execution mode for running an analysis, V1 = 'Single server execution' (worker versions `1.x.x` or `2.3.x`) , V2 = 'Distributed execution' scale an analysis across multiple nodes (Only workers `2.3.x` and above)",
"enum":[
"V1",
"V2"
]
},
"model_configurable": {
"type":"boolean",
"title":"Model configurable",
Expand Down

0 comments on commit 29a621e

Please sign in to comment.