Reputation: 11871
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.
Upvotes: 0
Views: 967
Reputation: 3342
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.
Upvotes: 3