It seems like the Cloud Tasks beta release is imminent? Is there any ETA? I'm asking because I'm about to implement a feature for a Node.js app in the Standard Environment, and I would love to use Task Queues rather than having to design something more complicated. Some indication of when this might become available would ease my decision making.
Some documentation/resources [1 <https://cloud.google.com/sdk/gcloud/reference/beta/tasks/>][2 <https://github.com/GoogleCloudPlatform/nodejs-docs-samples/tree/master/appengine/cloudtasks>] are already available. Trying to create a queue fails as shown below. The linked documentation produces a 404. > gcloud beta tasks queues create-app-engine-queue <name> --project=<project_id> WARNING: You are managing queues with gcloud, do not use queue.yaml or queue.xml in the future. More details at: https://cloud.google.com/cloud-tasks/docs/queue-yaml. API [cloudtasks.googleapis.com] not enabled on project [<id>]. Would you like to enable and retry (this will take a few minutes)? (y/N)? y Enabling service cloudtasks.googleapis.com on project <id>... ERROR: (gcloud.beta.tasks.queues.create-app-engine-queue) User [<email>] does not have permission to access service [cloudtasks.googleapis.com:enable] (or it may not exist): The caller does not have permission See related discussions here: https://groups.google.com/forum/#!searchin/google-appengine/cloud$20tasks|sort:date/google-appengine/Y9JlSOffnXM/s-o9iX0lAQAJ https://groups.google.com/forum/#!searchin/google-appengine/cloud$20tasks|sort:date/google-appengine/IcIjLfgnNXs/wvN-YcScBgAJ -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/d18c8314-86d5-43ff-991e-0a4a37cfc170%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
