Wednesday, December 29, 2021

[SOLVED] How to execute Google Cloud Run service every N minutes?

Issue

I have a service in Goole Run Cloud. I run make it do work by sending HTTP request to the special url.

But I want to run that code very N minutes. So I'm searching the proper way to do it.

I need something like Cloud Cron that I can configure to make a special request every N minutes.


Solution

Cloud Scheduler: https://cloud.google.com/scheduler is the service you're looking for. It'll let you schedule events on a timer like you're looking to do.



Answered By - Gabe Weiss