forked from snarfed/bridgy-fed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueue.yaml
More file actions
71 lines (61 loc) 路 1.48 KB
/
Copy pathqueue.yaml
File metadata and controls
71 lines (61 loc) 路 1.48 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# https://docs.cloud.google.com/appengine/docs/standard/reference/queueref?tab=python
# https://cloud.google.com/tasks/docs/queue-yaml
total_storage_limit: 10G
queue:
- name: atproto-commit
rate: 500/s
max_concurrent_requests: 2000
retry_parameters:
task_retry_limit: 0
- name: webmention
rate: 500/s
max_concurrent_requests: 2000
retry_parameters:
# WARNING: keep this in sync with receive below
# and with protocol.TASK_RETRIES_RECEIVE!
task_retry_limit: 4
min_backoff_seconds: 30
max_doublings: 1
- name: receive
rate: 500/s
max_concurrent_requests: 2000
retry_parameters:
# WARNING: keep this in sync with webmention above
# and with protocol.TASK_RETRIES_RECEIVE!
task_retry_limit: 4
# WARNING: keep this above protocol.MEMCACHE_LEASE_EXPIRATION!
min_backoff_seconds: 30
max_doublings: 1
- name: send
rate: 500/s
max_concurrent_requests: 2000
retry_parameters:
task_retry_limit: 2
min_backoff_seconds: 30
max_doublings: 2
- name: poll-feed
rate: 50/s
max_concurrent_requests: 2000
retry_parameters:
task_retry_limit: 2
min_backoff_seconds: 300
max_doublings: 2
- name: notify
rate: 500/s
max_concurrent_requests: 2000
retry_parameters:
task_retry_limit: 2
min_backoff_seconds: 300
max_doublings: 2
#
# Bounce
#
- name: review
rate: 500/s
retry_parameters:
task_retry_limit: 5
min_backoff_seconds: 5
- name: migrate
rate: 500/s
retry_parameters:
task_retry_limit: 0