3,163 questions
0
votes
1
answer
47
views
How to generate the Endpoint URL to cloud functions for push subscriptions on Google Pub/Sub?
I have a Cloud Function (v1) that is set to trigger every time a message is received in a specific topic. This part of the configuration is done correctly (since I've followed previous working cloud ...
-1
votes
0
answers
22
views
How to get an event when a label is created using pub/sub [closed]
I am working on gmail API and want to know is there any event triggered when we create a new label inside the gmail application.
as per documentation I get notified when an email is added to the ...
1
vote
0
answers
31
views
Setting to increase GCP Pub/Sub subscription send throughput
I am trying to figure out the source of latency in my application as I am seeing a number of un-acked messages per unit time on the dashboard for my GCP Pub/Sub subscription. My application simply ...
0
votes
0
answers
39
views
Getting metadata from plugin failed with error: key must be a string, a buffer or an object before any response was received
I have a Node app that is running on railway.com in a Docker container. This app uses GCP pub/sub.
One oddity of railway.com is I can't find a way to inject a file as a secret or a file into a ...
0
votes
1
answer
59
views
Do I need to setup anything else to ensure my GCP Pub/Sub Streaming Pull rate is optimal?
I have a GCP Pub/Sub Streaming Pull subscriber that has an Ack rate equal to the Pull rate. I am seeing a lot of latency on my end and I decided to investigate further. I find that the Publish to Ack ...
0
votes
1
answer
76
views
Why am I getting several seconds latency delay with my GCP Pub/Sub subscription/subscriber settings?
I have a GCP subscriber that uses Streaming Pull API to pull messages from a GCP subscription. There is only one GCP subscription and one subscriber attached to this subscription. I am seeing delay of ...
0
votes
0
answers
70
views
Monitor message published to GCP pubsub topic
I was trying to create an alert for messages not getting published to pubsub topic.
Usecase: if message are not getting published for 10mins trigger an alert
Problem:
Although the job producing ...
0
votes
1
answer
65
views
Understanding GCP Pub/Sub Sent Metric and Ack Metric With Dead Lettering
I am testing my Pub/Sub setup with dead lettering enabled. Inside my subscriber application, I have not added any ack logic so all messages will not be acked by my subscriber. I set the maximum ...
0
votes
0
answers
45
views
java expansion service (grpc server) is UNAVAILABLE when ReadFromPubSub in beam application tries to access
My beam python on flinkrunner(PortableRunner) has the following code.
from apache_beam.io.external.gcp.pubsub import ReadFromPubSub
from dependency_injector import providers
...
pubsub_reader = ...
0
votes
0
answers
30
views
How to handle GCP marketplace pub sub events for subscription for Saas integration?
@pubsub_bp.route("/api/pubsub/events", methods=["POST"])
def handle_pubsub_event():
try:
print("Received Pub/Sub event")
envelope = request.get_json()
...
0
votes
0
answers
60
views
How to prevent Cloud Run 429 too many requests going to the PubSub dead letter queue
Problem
We use Cloud Run to process upload events, where a user can upload hundreds of images at once. This causes high usage spikes, and since we are limited to 25 Cloud Run instances, many Pub/Sub ...
0
votes
1
answer
79
views
Google Cloud PubSub Emulator
I'm running into an issue when trying to use the Google Cloud Pub/Sub Emulator. I am able to start the emulator successfully, but I cannot create topics or interact with it using gcloud commands.
I ...
0
votes
0
answers
40
views
How to Set Table-Specific Ordering Key in Debezium for Google Pub/Sub Sink?
I'm using Debezium Server to capture changes from a PostgreSQL database and publish them to Google Cloud Pub/Sub. I want to set a table-specific ordering key so that messages related to the same ...
0
votes
0
answers
23
views
How to Implement a Form Watcher for External Users in Google Forms?
I need to implement live notifications when respondents fill out a Google Form. While Google Script Triggers would typically work, they are limited to 10 triggers per user, which is not sufficient for ...
0
votes
1
answer
81
views
Why is GCP Pubsub publishMessage so slow
I have a API on CloudRun which publishes a payload to a Pubsub topic which triggers a Cloudfunction.
When I test it, the publishMessage() call takes more than 200ms to complete.
This is my code to ...