Hi,
Let's say that I am starting jobs with different parameters at a certain time each day in the following manner:
response = requests.post(
"https://%s/api/2.0/jobs/run-now" % (DOMAIN),
headers={"Authorization": "Bearer %s" % TOKEN}, json={
"job_id": job_id,
"notebook_params": {
"country_name": str(country_id),
}
})
I was wondering how I could go about specifying a specific cluster size for a run of a workflow? And how do you specify that the cluster should be shared among the tasks in the workflow? This could be interesting when you have one country_id for which a bigger cluster is needed compared to all other countries and other similar use-cases.
Thanks in advance.