I am aware to start job pools the command is to ::
curl -X PUT -u : http:///knime/rest/v4/repository/:properties?com.knime.enterprise.server.jobpool.size=
And to consume from job pools command is this ::
curl -u : http:///knime/rest/v4/repository/:job-pool?p1=v1&p2=v2
Thanks, i was exploring the metadata REST endpoint for my workflow and found these options::
To get the properties::
“knime:properties”: {
“href”: “http:///knime/rest/v4/repository/:properties{?name}”,
“isHrefTemplate”: true,
“method”: “GET”
},
eg::
http:///knime/rest/v4/repository/:properties?name=com.knime.enterprise.server.jobpool.size
To set the properties::
“knime:set-property”: {
“href”: “http:///knime/rest/v4/repository/:properties{?property-names}”,
“isHrefTemplate”: true,
“method”: “PUT”
},
eg::
http:///knime/rest/v4/repository/:properties?com.knime.enterprise.server.jobpool.size=10
To delete the properties::
“knime:delete-property”: {
“href”: “http:///knime/rest/v4/repository/:properties{?name}”,
“isHrefTemplate”: true,
“method”: “DELETE”
}
http:///knime/rest/v4/repository/:properties?name=com.knime.enterprise.server.jobpool.size