Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Document that pusher instances are shardable #9407

Merged
merged 2 commits into from
Feb 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/9407.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Document that pusher instances are shardable.
10 changes: 9 additions & 1 deletion docs/workers.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,15 @@ Handles sending push notifications to sygnal and email. Doesn't handle any
REST endpoints itself, but you should set `start_pushers: False` in the
shared configuration file to stop the main synapse sending push notifications.

Note this worker cannot be load-balanced: only one instance should be active.
To run multiple instances at once the `pusher_instances` option should list all
pusher instances by their worker name, e.g.:

```yaml
pusher_instances:
- pusher_worker1
- pusher_worker2
```


### `synapse.app.appservice`

Expand Down