Questions tagged [event-arc]

41 questions
1
vote
1 answer

How to create an Eventarc trigger in terraform for Pub/Sub?

I need to create an eventarc trigger on a Pub/Sub message published. I do not know where to put the Pub/Sub topic ID. resource "google_eventarc_trigger" "eventarc_trigger" { name = "test-trigger" service_account = var.service_account …
1
vote
1 answer

EventArc in Google Cloud Request the Cloud Run Service more than Once in One Time Trigger

Currently, I create a service in Cloud Run to retrain ML models. The service will do the retrain process when there is an event from BigQuery called google.cloud.bigquery.v2.JobService.InsertJob. I use the EventArc in GCP to trigger the Retrain…
1
vote
0 answers

Unable to publish an Eventarc event to a region other than us-central1

When i publish a event directly to eventArc using firebase-admin/eventarc with a region other than us-central1 it failed with the error below. Is it a limitation of the Eventarc Publishing API ? Code used to publish the event: const…
1
vote
1 answer

How to trigger Cloud Run from Global EventArc using pub sub

I have a cloudrun service deployed in asia-south1 region and would like to trigger it from eventarc when a message is published in pubsub. However asia-south1 doesn't have eventarc, so I decided to create event arc trigger as location=global. Below…
1
vote
1 answer

Trigger cloud run from the event : GCS object create, using Eventarc API

I am trying to build a python cloud run service that would be triggered whenever a file is uploaded in a google cloud storage bucket. Although, when I see the logs, the service is not triggered while I have created an Eventarc trigger for the same,…
0
votes
0 answers

Unable to View Audit Logs for Stream Firestore to BigQuery Extension

I have installed Stream Firestore to BigQuery extension for one of collection, When I insert some records in that collection, it successfully move data from Firestore to BigQuery. But I am not able to view Logs of BigQuery Data Insertion in a…
0
votes
0 answers

EventArc trigger on multiple types

I'm trying to create an eventarc trigger that listens for multiple CloudEvent types. However, all I'm seeing is that at trigger has 1 CloudEvent type but can filter on attributes. I do control the code for publishing, so I could add logic that…
Zambonilli
  • 4,358
  • 1
  • 18
  • 18
0
votes
0 answers

Google Cloud Eventarc: not triggering workflow once every few days

Google Cloud: I have a pipeline set up where I trigger a workflow when a message is published to a pub sub topic using an eventarc trigger (google.cloud.pubsub.topic.v1.messagePublished). However lately I've noticed that sometimes the workflow is…
0
votes
1 answer

Execute a google cloud scheduled function from a cloud trigger and then stop it

I am attempting to create a scheduled function in google cloud which starts from an event sent from a cloud function trigger, runs for a period of time, and then stops based on a condition or another event Trigger -> Start scheduled function -> run…
Jeff Voss
  • 3,637
  • 8
  • 46
  • 71
0
votes
0 answers

Access denied issue is found while hitting a GCP workflow using GCP event arc trigger

I am trying to hit a GCP workflow using a GCP event arc trigger. The service acocunt, I configured for this event arc trigger is already having the necessary roles i.e "workflow invoker" but it is still getting 403 access denied error while hitting…
0
votes
1 answer

How to specify pubsub topic when deploying event arc triggered 2nd gen cloud function using gcloud command

I want to deploy cloud function that is triggerred by pubsub eventarc trigger using gcloud command line, but I haven't found a way to specify the pubsub topic with the gcloud command. I have tried executing gcloud command like this : gcloud…
0
votes
0 answers

Eventarc triggers for crossproject

I have created a cloud run service. My event arc is not triggering the cross project to read the data. How to give the event filter for resource name in event arc with insert job/Job completed to trigger to BQ table. gcloud eventarc triggers create…
0
votes
0 answers

Can we use Eventarc to trigger a google workflow only if certain set of google workflows get executed?

I am having use case where one workflow needs to be executed if certain n no. of workflows gets completed. Can we achieve this using eventarc trigger feature of Google Cloud ?
0
votes
1 answer

Creating a terraform with Eventarc with its destination to cloud function

https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/eventarc_trigger I was looking to create a terraform file to help deploy an eventarc with its destination as a cloud function. On the terraform docs it says it was not…
0
votes
1 answer

Cannot apply path pattern for firestore in EventArc

I was trying to use EventArc to monitor Firestore changes, which will trigger a Cloud Run service. It works by listening to Any Resource or specific resource name. Resource name projects/PROJECT_Id/databases/(default) It works, but it will listen…
Dale Nguyen
  • 1,930
  • 3
  • 24
  • 37