summary refs log tree commit diff
path: root/synapse/replication/http/__init__.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge different Resource implementation classes (#7732)Erik Johnston2020-07-031-1/+2
|
* Add option to move event persistence off master (#7517)Erik Johnston2020-05-221-1/+3
|
* Allow ReplicationRestResource to be added to workers (#7515)Erik Johnston2020-05-181-5/+8
| | | This allows workers to talk to each other over HTTP replication.
* Move catchup of replication streams to worker. (#7024)Erik Johnston2020-03-251-0/+2
| | | This changes the replication protocol so that the server does not send down `RDATA` for rows that happened before the client connected. Instead, the server will send a `POSITION` and clients then query the database (or master out of band) to get up to date.
* Fix caching devices for remote servers in worker.Erik Johnston2019-11-051-1/+9
| | | | | | | | When the `/keys/query` API is hit on client_reader worker Synapse may decide that it needs to resync some remote deivces. Usually this happens on master, and then gets cached. However, that fails on workers and so it falls back to fetching devices from remotes directly, which may in turn fail if the remote is down.
* Split out registration to workerErik Johnston2019-02-181-1/+3
| | | | | | | | This allows registration to be handled by a worker, though the actual write to the database still happens on master. Note: due to the in-memory session map all registration requests must be handled by the same worker.
* Add replication APIs for persisting federation eventsErik Johnston2018-08-061-1/+2
|
* run isortAmber Brown2018-07-091-1/+0
|
* Fix importsErik Johnston2018-03-141-4/+1
|
* Implement RoomMemberWorkerHandlerErik Johnston2018-03-131-0/+2
|
* Add replication http endpoint for event sendingErik Johnston2018-02-071-0/+31