Suppose I create a new queue in my queue.yaml
file as:
queue:
- name: my_queue
What would be the equivalent queue with all parameters specified?
Here's what I could gather from the docs so far.
queue:
- name: my_queue
mode: push
bucket_size: 5
target: <the same version that enqueued the task>
rate: ???
max_concurrent_requests: ???
retry_parameters:
task_retry_limit: ???
task_age_limit: ???
min_backoff_seconds: ???
max_backoff_seconds: ???
max_doublings: ???
Can you help me fill in the gaps?