This page explains the differences between using the
Cloud Tasks API to manage queues
and using the upload of a Cloud Tasks
queue.yaml
file to accomplish the same ends. It also discusses some of the
pitfalls of mixing mechanisms and how to deal with common problems.
The Cloud Tasks API provides an App Engine-independent interface to
the App Engine Task Queue
service. As part of that interface, it provides the ability to manage queues,
including doing so through the console or thegcloud command. Queues that are
created by Cloud Tasks API are accessible from the App Engine SDK and vice
versa. To maintain compatibility, it is possible to use the configuration
file used by the App Engine SDK, queue.yaml, to also create and configure
queues to be used through the Cloud Tasks API. However, mixing configuration
via file with configuration through the Cloud Tasks API can produce unexpected consequences.
queue.yaml with Cloud Tasks queue management methodsFor the underlying service,queue.yaml files are definitive. Uploading a queue.yaml that omits existing queues in your project, no matter how they were created, causes those queues to be disabled, or paused. Thus if you use the Cloud Tasks API to call CreateQueue or UpdateQueue and then upload a queue.yaml file that omits them, the queues that were created in the Cloud Tasks calls are disabled.
Consider the following scenario:
CreateQueue to create a queue named "cloud-tasks-queue".Upload a queue.yaml file with the following contents:
queue:
- name: queue-yaml-queue
What is the current state of queues in this project? The queue named
"cloud-tasks-queue" and any other queues that existed prior are in
DISABLED state, and the queue named "queue-yaml-queue" is in RUNNING
state.
This behavior might be surprising if you create queues through the Cloud Tasks API. The instructions below explain how to resume a disabled queue.
Similarly, if a queue is disabled in the Cloud Tasks API but later appears in an
uploaded queue.yaml file, that queue is resumed.
If a queue is deleted with the DeleteQueue method and later appears in a
queue.yaml file, the queue.yaml upload can fail because queue names are not
allowed to be reused for several days after deletion.
If you are new to Cloud Tasks or App Engine, use the Cloud Tasks API
exclusively to manage your queues and avoid the use of queue.yaml
altogether. Cloud Tasks queue management methods give users more choice in creating, updating, and deleting queues.
If, however, you are an existing queue.yaml user, you should only consider switching to queue management methods if you understand the
pitfalls of mixing queue.yaml with Cloud Tasks queue management methods.
To prevent users from mixing task management methods, one option is to
create a web app or command line tool that all users must use to create, update,
and delete queues. Whether that tool uses Cloud Tasks queue
management methods or queue.yaml is an implementation detail of the tool
that users do not need to worry about. If users are required to use the tool,
then you can guarantee that there is no inadvertent mixing of
Cloud Tasks queue management methods and queue.yaml use.
To help enforce use of such a tool, you can grant queue admin roles to the tool
and require users to authenticate to use the tool. To learn more about access
management, see
Secure queue configuration.
You can inspect your project's Admin Activity audit logs to retrieve the history of queue configuration changes including queue creations, updates, and deletions:
gcloud logging read \
'protoPayload.methodName=
(com.google.appengine.legacy.queue_created OR
com.google.appengine.legacy.queue_updated OR
google.cloud.tasks.v2.CloudTasks.CreateQueue OR
google.cloud.tasks.v2.CloudTasks.UpdateQueue OR
google.cloud.tasks.v2.CloudTasks.DeleteQueue)'
For example, if an existing queue is disabled by a queue.yaml upload, a
"Disabled queue '[QUEUE_NAME]'" message would appear in the audit log through
the com.google.appengine.legacy.queue_updated method.
queue.yaml uploadIf you
mix queue.yaml with Cloud Tasks queue management methods,
uploading a queue.yaml file might accidentally disable a queue created through the Cloud Tasks API.
To resume the queue, you can either call ResumeQueue on the queue or add it
to queue.yaml and upload. Be aware that if you had previously set a custom
processing
rate
in the queue.yaml configuration for the queue,
ResumeQueue resets the queue to the default rate. This is reflected in the
maxDispatchesPerSecond
field of the response to ResumeQueue.
If you use queue.yaml to create your queues, by default you can create a maximum of 100 queues. Queues created
using the Cloud Tasks API have a default maximum of 1,000 queues. As in
other cases, mixing queue.yaml and Cloud Tasks API methods can produce unexpected
results. For example, suppose you create some queues using queue.yaml, and then get a
quota increase to, for example, 2,000. If you then subsequently use the Cloud Tasks API
method of creating further queues, you will get out of quota errors. To remedy this,
file a request using Edit Quotas from the Quotas page of
the Google Cloud console.
Changes to queue configuration can require several minutes to take effect. For
example, after calling CreateQueue or UpdateQueue, several minutes might
pass before you can successfully call CreateTask on that queue.
default App Engine queueThe App Engine queue named "default" is given special treatment in the App Engine SDK and in the Cloud Tasks API.
If the default queue does not already exist, it is created in the following
situations:
default queue using the App Engine SDK.queue.yaml file that specifies a default queue is uploaded.CreateQueue or UpdateQueue is called to create the default queue.To preserve compatibility with App Engine, Cloud Tasks enforces the following restrictions:
default queue.In the Cloud Tasks API, the following also applies to the default queue:
default queue or
any other queues.GetQueue on the default queue results
in a not found error if the call is made before the queue is created.default queue does not appear in the output of ListQueues
before it is created.default queue can be changed with the
UpdateQueue call.queue.yaml.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2026-06-09 UTC.