This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'a9631b7b4' into anoa/dinsic_release_1_18_x
* commit 'a9631b7b4': 1.18.0 Update worker docs with recent enhancements (#7969)
- Loading branch information
Showing
16 changed files
with
428 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
### Using synctl with workers | ||
|
||
If you want to use `synctl` to manage your synapse processes, you will need to | ||
create an an additional configuration file for the main synapse process. That | ||
configuration should look like this: | ||
|
||
```yaml | ||
worker_app: synapse.app.homeserver | ||
``` | ||
Additionally, each worker app must be configured with the name of a "pid file", | ||
to which it will write its process ID when it starts. For example, for a | ||
synchrotron, you might write: | ||
```yaml | ||
worker_pid_file: /home/matrix/synapse/worker1.pid | ||
``` | ||
Finally, to actually run your worker-based synapse, you must pass synctl the `-a` | ||
commandline option to tell it to operate on all the worker configurations found | ||
in the given directory, e.g.: | ||
|
||
synctl -a $CONFIG/workers start | ||
|
||
Currently one should always restart all workers when restarting or upgrading | ||
synapse, unless you explicitly know it's safe not to. For instance, restarting | ||
synapse without restarting all the synchrotrons may result in broken typing | ||
notifications. | ||
|
||
To manipulate a specific worker, you pass the -w option to synctl: | ||
|
||
synctl -w $CONFIG/workers/worker1.yaml restart |
Oops, something went wrong.