Hello
I have around 150 jobs and this is likely to increase.
I use this call to get all the jobs and write them into a list called json.
My logic here is to match a name to a job id and run the job using the job id.
response = requests.get(hostHTTPS, json = additional_parameters, headers=auth).json()
HostHTTPS is basically this:
hostHTTPS = ''.join([databricksHost, "/api/2.1/jobs/list?limit=100"])
That goes off and returns 100 jobs - all good
If I change limit to more than 100, I get (e.g. 200):
{'error_code': 'INVALID_PARAMETER_VALUE', 'message': 'Invalid limit 200 - it has to be no more than 100.', 'details': [{'@type': 'type.googleapis.com/google.rpc.RequestInfo'
How do I increase this as 100 is a pretty small number?
Thanks