bessarabov
bessarabov

Reputation: 11871

How to execute Google Cloud Run service every N minutes?

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

Answers (1)

Gabe Weiss
Gabe Weiss

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

Related Questions