| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 queue: | 5 queue: |
| 6 # Pull queue for backend archival tasking. Tasks will be processed by an | |
| 7 # archivist cluster. | |
| 8 - name: archive-queue | |
| 9 mode: pull | |
| 10 acl: | |
| 11 # luci-logdog (prod) GCE service account. | |
| 12 - user_email: 43182045235-compute@developer.gserviceaccount.com | |
| 13 # luci-logdog-dev GCE service account. | |
| 14 - user_email: 38892607523-compute@developer.gserviceaccount.com | |
| 15 # luci-logdog-dev developer service account. | |
| 16 - user_email: service-account@luci-logdog-dev.iam.gserviceaccount.com | |
| 17 | |
| 18 # Push queue for tumble (from doc.go). | 6 # Push queue for tumble (from doc.go). |
| 19 # | 7 # |
| 20 # These must scale with shards. The max_concurrent_requests and bucket_size | 8 # These must scale with shards. The max_concurrent_requests and bucket_size |
| 21 # should equal the number of shards. | 9 # should equal the number of shards. |
| 22 - name: tumble | 10 - name: tumble |
| 23 rate: 1/s | 11 rate: 1/s |
| 24 bucket_size: 1 | 12 bucket_size: 1 |
| 25 max_concurrent_requests: 1 | 13 max_concurrent_requests: 1 |
| 26 retry_parameters: | 14 retry_parameters: |
| 27 task_age_limit: 1m | 15 task_age_limit: 1m |
| 28 min_backoff_seconds: 2 | 16 min_backoff_seconds: 2 |
| 29 max_backoff_seconds: 6 | 17 max_backoff_seconds: 6 |
| 30 max_doublings: 7 | 18 max_doublings: 7 |
| 31 target: backend | 19 target: backend |
| OLD | NEW |