google-cloud-tasks Questions
4
I'm following thist tutorial : https://cloud.google.com/tasks/docs/tutorial-gcf
To create a Task that would call a cloud function.
I've done quite some tries and still get this error:
If I change ...
Realpolitik asked 27/8, 2020 at 15:43
2
I started to work with Cloud Tasks, I am performing some tests so I created and deleted Cloud Tasks queues from the GCP console a couple of times.
Every time I delete a queue and try to recreate it...
Schlep asked 12/3, 2021 at 8:47
5
Solved
I am trying to invoke a Cloud Run service using Cloud Tasks as described in the docs here.
I have a running Cloud Run service. If I make the service publicly accessible, it behaves as expected.
I h...
Francois asked 9/4, 2020 at 16:23
1
Solved
We (as a company) experience large spikes every day. We use Pub/Sub -> Cloud Run combination.
The issue we experience is that when high traffic hits, Pub/Sub tries to push messages to Cloud/Run ...
Iodide asked 16/9, 2021 at 13:13
2
Solved
I'm getting an error in the firebase console functions log when calling a firebase HTTP function that tries to create a task.
Error: 7 PERMISSION_DENIED: The principal (user or service account) la...
Shuman asked 5/8, 2020 at 16:8
2
I am using the firebase emulator to host some GCF functions on my machine. They are configured to run/host on localhost:5001. This works great.
I am now using Google Tasks in my app, and the task I...
Consanguinity asked 23/7, 2020 at 14:24
3
How can I trigger a Cloud Function from Cloud Tasks when that function has its ingress settings set to "allow internal only"?
With that setting, the function rejects the incoming HTTP tra...
Boots asked 22/10, 2020 at 15:46
5
I have problem with google cloud tasks API. I need create task with far schedule time. Maximum schedule time is 30 days. Is possibility to increase that limit or some problem's bypass?
Mana asked 23/10, 2019 at 20:13
2
I'm using Cloud Run and Cloud Tasks to do some async processing of webhooks. When I get a request to my Cloud Run service, I queue up a task in my Cloud Tasks queue and return a response from my se...
Ganiats asked 28/3, 2021 at 20:17
1
Solved
I am trying to get a Cloud Function to create a Cloud Task that will invoke a Cloud Function. Easy.
The flow and use case are very close to the official tutorial here.
I also looked at this article...
Campney asked 16/2, 2022 at 17:48
1
Solved
My handler named taskToFireOff has allUsers deleted, the Cloud Tasks Enqueuer principal's name is set to the ServiceAccountEmail, and its role is set to Invoker (not shown)
When a post is created,...
Celinacelinda asked 7/10, 2021 at 3:12
2
Solved
I'm following the Creating HTTP Target tasks guide.
When I run the code posted below I get this error:
cloudtasks.CreateTask: rpc error: code = PermissionDenied
desc = The principal (user or serv...
Trichinopoly asked 25/2, 2020 at 12:39
1
I am facing challenge to invoke cloud Function from cloud task using oidcToken.
Here are details of my IAM & Code:
const { CloudTasksClient } = require('@google-cloud/tasks');
const client = ne...
Channing asked 17/11, 2020 at 3:44
2
I am using Cloud Tasks. I need to trigger the execution of Task C only when Task A and Task B have been completed successfully. So I need some way of reading / being notified of the statuses of Tas...
Macrocosm asked 15/4, 2020 at 7:36
2
I'm trying to rate limit Google Cloud Tasks to no more than 1 processed task per second.
I've created my queue with:
gcloud tasks queues create my-queue \
--max-dispatches-per-second=1 \
--max-...
Caseous asked 27/7, 2019 at 3:14
1
© 2022 - 2024 — McMap. All rights reserved.