Relative Content

Tag Archive for google-cloud-platformcrongoogle-cloud-functionsgoogle-cloud-scheduler

How to request a URL every 30 seconds?

I have a Google Cloud Function that I would like to trigger every 30 seconds. The function’s trigger is set to a URL, so I simply need to request the URL to run it. My goal is to run the function every 30 seconds.

How to Schedule a Cron Job on Google Cloud Scheduler?

Context I have containerised a machine learning inference batch job that I am currently running on an on-prem ubuntu instance as a cron job. Basically, the cron job runs (there are a few other lines, but this is the core) docker run $IMAGE and this performs some inference using python. Challenge I want to migrate […]