-
Notifications
You must be signed in to change notification settings - Fork 39
/
queue.yaml
42 lines (38 loc) · 910 Bytes
/
queue.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# https://cloud.google.com/appengine/docs/standard/python/config/queueref
# https://cloud.google.com/tasks/docs/queue-yaml
queue:
- name: atproto-commit
rate: 300/s
max_concurrent_requests: 25
retry_parameters:
task_retry_limit: 2
min_backoff_seconds: 5
max_doublings: 5
- name: webmention
rate: 500/s
max_concurrent_requests: 10
retry_parameters:
task_retry_limit: 2
min_backoff_seconds: 300
max_doublings: 2
- name: receive
rate: 500/s
max_concurrent_requests: 100
retry_parameters:
task_retry_limit: 2
min_backoff_seconds: 300
max_doublings: 2
- name: send
rate: 500/s
max_concurrent_requests: 100
retry_parameters:
task_retry_limit: 2
min_backoff_seconds: 300
max_doublings: 2
- name: poll-feed
rate: 5/s
max_concurrent_requests: 5
retry_parameters:
task_retry_limit: 2
min_backoff_seconds: 300
max_doublings: 2