Questions tagged [google-cloud-scheduler]

Google Cloud Scheduler is a fully managed enterprise-grade cron job scheduler.

Google Cloud Scheduler is a fully managed enterprise-grade cron job scheduler. It allows you to schedule virtually any job, including batch, big data jobs, cloud infrastructure operations, and more. You can automate everything, including retries in case of failure to reduce manual toil and intervention. Cloud Scheduler even acts as a single pane of glass, allowing you to manage all your automation tasks from one place.

Product Page

298 questions
-1
votes
2 answers

How to shutdown a Virtual Machine in GCP after successful execution of code?

I have following A repository which contains a code(python) to be executed A VM at Google Cloud (debian/ubuntu) A scheduler + cloud function to start VM every hour What I require I want to run the code present in repository which will be pulled…
-1
votes
1 answer

Parallel processing with Google Earth Engine and Google Cloud Platform?

I am trying to figure out an optimal way to parallelize the following: Generate an image from Google Earth Engine and have it exported into a Google Cloud Storage bucket. Push this image from the Cloud Storage bucket to a virtual machine running on…
-1
votes
1 answer

Cloud scheduler trigger on the first monday of each month

I'm trying to schedule a job to trigger on the first Monday of each month: This is the cron expression I got: 0 5 1-7 * 1 (which ,as far as I can read unix cron expressions, triggers at 5:00 am on Monday if it happens to be in the first 7 days of…
Ademi
  • 320
  • 2
  • 12
-1
votes
1 answer

How to configure a Cloud Scheduler job to call a Cloud Run endpoint that allows unauthenticated calls

I have a Cloud Run service setup and I have a Cloud Scheduler job that calls an endpoint on that service. The job sent a GET call (which have an header with a jwt and an api-key, necessary to certify the call to the endpoint) to the Cloud Run…
-1
votes
1 answer

How to create a function that runs a gcloud command?

I use the following command in my Compute Engine to run a script that's stored in Cloud Storage: gsutil cat gs://project/folder/script.sh | sh I want to create a function that runs this command and eventually schedule to run this function, but I…
-1
votes
1 answer

Cloud Scheduler Page Access Issue - Shared project

The manager holds the account that provides billing to the said project, now I cannot go to Cloud Scheduler page due to my account not having a billing setup, therefore my workaround is to manually input the link directly to the page like…
-1
votes
1 answer

Why BigQuery table last modified date does not match to the last insert date?

BigQuery table last modified date does not match at the last insert date. I set up a Cloud Schedulers to stream data every day into BigQuery. All records have a creation date, initialized at the time data is inserted. However, the "last modified"…
-1
votes
1 answer

Google Cloud Scheduler: Why cloud function runs successfully but logger still shows error?

I set up a google cloud scheduler job that triggers a cloud function through HTTP. I can be sure that the cloud function is triggered and runs successfully - it has produced the expected outcome. However, the scheduler job still shows "failed" and…
-1
votes
1 answer

How to configure Google Cloud Scheduler to run daily every 4 hours from 8 am to 8 pm?

I need help in configuring my Google Cloud Scheduler. I need the scheduler to run daily every 4 hours starting from 8 am to 8 pm. Can anyone please help me figure out how to achieve this frequency?
nsk
  • 255
  • 3
  • 12
-1
votes
2 answers

Creating a Data Pipeline to BigQuery Using Cloud Functions and Cloud Scheduler

I am trying to build a Data Pipeline that will download the data from this website and push it to a BigQuery Table. def OH_Data_Pipeline(trigger='Yes'): if trigger=='Yes': import pandas as pd import pandas_gbq import…
-2
votes
1 answer

Who starts the google cloud scheduler?

I can't find any documentation on how gcp scheduler works under the hood. An App Engine is needed in the project, so I assume that the Http calls or Pub/Sub messages are started from the App Engine. Currently I can use a cloud scheduler even without…
-3
votes
1 answer

Different Cron Expression for day and night

Is there a way to create a cron expression to run for every half an hour during the day and every 4 hours during the night? I am using this cron expression inside a cloud scheduler that runs the GCP cloud function.
1 2 3
19
20