I have a Google Cloud Function (python) that iterates through a dataset and triggers other Google Cloud Functions (within the iteration) if certain criteria are met.
Is there a way to send HTTP POST requests to a cloud function without waiting for a response? Waiting for a response is slowing my iterator function down.
I've been exploring the timeout
parameter in the requests
module but it doesn't seem to be working.
requests.post(function_trigger,headers=headers,data=json.dumps(payload), timeout=0.5)
Any ideas?