workers.html 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931
  1. <!DOCTYPE HTML>
  2. <html lang="en" class="sidebar-visible no-js light">
  3. <head>
  4. <!-- Book generated using mdBook -->
  5. <meta charset="UTF-8">
  6. <title>Workers - Synapse</title>
  7. <!-- Custom HTML head -->
  8. <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  9. <meta name="description" content="">
  10. <meta name="viewport" content="width=device-width, initial-scale=1">
  11. <meta name="theme-color" content="#ffffff" />
  12. <link rel="icon" href="favicon.svg">
  13. <link rel="shortcut icon" href="favicon.png">
  14. <link rel="stylesheet" href="css/variables.css">
  15. <link rel="stylesheet" href="css/general.css">
  16. <link rel="stylesheet" href="css/chrome.css">
  17. <link rel="stylesheet" href="css/print.css" media="print">
  18. <!-- Fonts -->
  19. <link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
  20. <link rel="stylesheet" href="fonts/fonts.css">
  21. <!-- Highlight.js Stylesheets -->
  22. <link rel="stylesheet" href="highlight.css">
  23. <link rel="stylesheet" href="tomorrow-night.css">
  24. <link rel="stylesheet" href="ayu-highlight.css">
  25. <!-- Custom theme stylesheets -->
  26. <link rel="stylesheet" href="docs/website_files/table-of-contents.css">
  27. <link rel="stylesheet" href="docs/website_files/remove-nav-buttons.css">
  28. <link rel="stylesheet" href="docs/website_files/indent-section-headers.css">
  29. <link rel="stylesheet" href="docs/website_files/version-picker.css">
  30. </head>
  31. <body>
  32. <!-- Provide site root to javascript -->
  33. <script type="text/javascript">
  34. var path_to_root = "";
  35. var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "navy" : "light";
  36. </script>
  37. <!-- Work around some values being stored in localStorage wrapped in quotes -->
  38. <script type="text/javascript">
  39. try {
  40. var theme = localStorage.getItem('mdbook-theme');
  41. var sidebar = localStorage.getItem('mdbook-sidebar');
  42. if (theme.startsWith('"') && theme.endsWith('"')) {
  43. localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
  44. }
  45. if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
  46. localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
  47. }
  48. } catch (e) { }
  49. </script>
  50. <!-- Set the theme before any content is loaded, prevents flash -->
  51. <script type="text/javascript">
  52. var theme;
  53. try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
  54. if (theme === null || theme === undefined) { theme = default_theme; }
  55. var html = document.querySelector('html');
  56. html.classList.remove('no-js')
  57. html.classList.remove('light')
  58. html.classList.add(theme);
  59. html.classList.add('js');
  60. </script>
  61. <!-- Hide / unhide sidebar before it is displayed -->
  62. <script type="text/javascript">
  63. var html = document.querySelector('html');
  64. var sidebar = 'hidden';
  65. if (document.body.clientWidth >= 1080) {
  66. try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
  67. sidebar = sidebar || 'visible';
  68. }
  69. html.classList.remove('sidebar-visible');
  70. html.classList.add("sidebar-" + sidebar);
  71. </script>
  72. <nav id="sidebar" class="sidebar" aria-label="Table of contents">
  73. <div class="sidebar-scrollbox">
  74. <ol class="chapter"><li class="chapter-item expanded affix "><li class="part-title">Introduction</li><li class="chapter-item expanded "><a href="welcome_and_overview.html">Welcome and Overview</a></li><li class="chapter-item expanded affix "><li class="part-title">Setup</li><li class="chapter-item expanded "><a href="setup/installation.html">Installation</a></li><li class="chapter-item expanded "><a href="postgres.html">Using Postgres</a></li><li class="chapter-item expanded "><a href="reverse_proxy.html">Configuring a Reverse Proxy</a></li><li class="chapter-item expanded "><a href="setup/forward_proxy.html">Configuring a Forward/Outbound Proxy</a></li><li class="chapter-item expanded "><a href="turn-howto.html">Configuring a Turn Server</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="setup/turn/coturn.html">coturn TURN server</a></li><li class="chapter-item expanded "><a href="setup/turn/eturnal.html">eturnal TURN server</a></li></ol></li><li class="chapter-item expanded "><a href="delegate.html">Delegation</a></li><li class="chapter-item expanded affix "><li class="part-title">Upgrading</li><li class="chapter-item expanded "><a href="upgrade.html">Upgrading between Synapse Versions</a></li><li class="chapter-item expanded affix "><li class="part-title">Usage</li><li class="chapter-item expanded "><a href="federate.html">Federation</a></li><li class="chapter-item expanded "><a href="usage/configuration/index.html">Configuration</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="usage/configuration/config_documentation.html">Configuration Manual</a></li><li class="chapter-item expanded "><a href="usage/configuration/homeserver_sample_config.html">Homeserver Sample Config File</a></li><li class="chapter-item expanded "><a href="usage/configuration/logging_sample_config.html">Logging Sample Config File</a></li><li class="chapter-item expanded "><a href="structured_logging.html">Structured Logging</a></li><li class="chapter-item expanded "><a href="templates.html">Templates</a></li><li class="chapter-item expanded "><a href="usage/configuration/user_authentication/index.html">User Authentication</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="usage/configuration/user_authentication/single_sign_on/index.html">Single-Sign On</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="openid.html">OpenID Connect</a></li><li class="chapter-item expanded "><a href="usage/configuration/user_authentication/single_sign_on/saml.html">SAML</a></li><li class="chapter-item expanded "><a href="usage/configuration/user_authentication/single_sign_on/cas.html">CAS</a></li><li class="chapter-item expanded "><a href="sso_mapping_providers.html">SSO Mapping Providers</a></li></ol></li><li class="chapter-item expanded "><a href="password_auth_providers.html">Password Auth Providers</a></li><li class="chapter-item expanded "><a href="jwt.html">JSON Web Tokens</a></li><li class="chapter-item expanded "><a href="usage/configuration/user_authentication/refresh_tokens.html">Refresh Tokens</a></li></ol></li><li class="chapter-item expanded "><a href="CAPTCHA_SETUP.html">Registration Captcha</a></li><li class="chapter-item expanded "><a href="application_services.html">Application Services</a></li><li class="chapter-item expanded "><a href="server_notices.html">Server Notices</a></li><li class="chapter-item expanded "><a href="consent_tracking.html">Consent Tracking</a></li><li class="chapter-item expanded "><a href="user_directory.html">User Directory</a></li><li class="chapter-item expanded "><a href="message_retention_policies.html">Message Retention Policies</a></li><li class="chapter-item expanded "><a href="modules/index.html">Pluggable Modules</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="modules/writing_a_module.html">Writing a module</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="modules/spam_checker_callbacks.html">Spam checker callbacks</a></li><li class="chapter-item expanded "><a href="modules/third_party_rules_callbacks.html">Third-party rules callbacks</a></li><li class="chapter-item expanded "><a href="modules/presence_router_callbacks.html">Presence router callbacks</a></li><li class="chapter-item expanded "><a href="modules/account_validity_callbacks.html">Account validity callbacks</a></li><li class="chapter-item expanded "><a href="modules/password_auth_provider_callbacks.html">Password auth provider callbacks</a></li><li class="chapter-item expanded "><a href="modules/background_update_controller_callbacks.html">Background update controller callbacks</a></li><li class="chapter-item expanded "><a href="modules/account_data_callbacks.html">Account data callbacks</a></li><li class="chapter-item expanded "><a href="modules/porting_legacy_module.html">Porting a legacy module to the new interface</a></li></ol></li></ol></li><li class="chapter-item expanded "><a href="workers.html" class="active">Workers</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="synctl_workers.html">Using synctl with Workers</a></li><li class="chapter-item expanded "><a href="systemd-with-workers/index.html">Systemd</a></li></ol></li></ol></li><li class="chapter-item expanded "><a href="usage/administration/index.html">Administration</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="usage/administration/admin_api/index.html">Admin API</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="admin_api/account_validity.html">Account Validity</a></li><li class="chapter-item expanded "><a href="usage/administration/admin_api/background_updates.html">Background Updates</a></li><li class="chapter-item expanded "><a href="admin_api/event_reports.html">Event Reports</a></li><li class="chapter-item expanded "><a href="admin_api/experimental_features.html">Experimental Features</a></li><li class="chapter-item expanded "><a href="admin_api/media_admin_api.html">Media</a></li><li class="chapter-item expanded "><a href="admin_api/purge_history_api.html">Purge History</a></li><li class="chapter-item expanded "><a href="admin_api/register_api.html">Register Users</a></li><li class="chapter-item expanded "><a href="usage/administration/admin_api/registration_tokens.html">Registration Tokens</a></li><li class="chapter-item expanded "><a href="admin_api/room_membership.html">Manipulate Room Membership</a></li><li class="chapter-item expanded "><a href="admin_api/rooms.html">Rooms</a></li><li class="chapter-item expanded "><a href="admin_api/server_notices.html">Server Notices</a></li><li class="chapter-item expanded "><a href="admin_api/statistics.html">Statistics</a></li><li class="chapter-item expanded "><a href="admin_api/user_admin_api.html">Users</a></li><li class="chapter-item expanded "><a href="admin_api/version_api.html">Server Version</a></li><li class="chapter-item expanded "><a href="usage/administration/admin_api/federation.html">Federation</a></li></ol></li><li class="chapter-item expanded "><a href="manhole.html">Manhole</a></li><li class="chapter-item expanded "><a href="metrics-howto.html">Monitoring</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="usage/administration/monitoring/reporting_homeserver_usage_statistics.html">Reporting Homeserver Usage Statistics</a></li></ol></li><li class="chapter-item expanded "><a href="usage/administration/monthly_active_users.html">Monthly Active Users</a></li><li class="chapter-item expanded "><a href="usage/administration/understanding_synapse_through_grafana_graphs.html">Understanding Synapse Through Grafana Graphs</a></li><li class="chapter-item expanded "><a href="usage/administration/useful_sql_for_admins.html">Useful SQL for Admins</a></li><li class="chapter-item expanded "><a href="usage/administration/database_maintenance_tools.html">Database Maintenance Tools</a></li><li class="chapter-item expanded "><a href="usage/administration/state_groups.html">State Groups</a></li><li class="chapter-item expanded "><a href="usage/administration/request_log.html">Request log format</a></li><li class="chapter-item expanded "><a href="usage/administration/admin_faq.html">Admin FAQ</a></li><li class="chapter-item expanded "><div>Scripts</div></li></ol></li><li class="chapter-item expanded "><li class="part-title">Development</li><li class="chapter-item expanded "><a href="development/contributing_guide.html">Contributing Guide</a></li><li class="chapter-item expanded "><a href="code_style.html">Code Style</a></li><li class="chapter-item expanded "><a href="development/reviews.html">Reviewing Code</a></li><li class="chapter-item expanded "><a href="development/releases.html">Release Cycle</a></li><li class="chapter-item expanded "><a href="development/git.html">Git Usage</a></li><li class="chapter-item expanded "><div>Testing</div></li><li><ol class="section"><li class="chapter-item expanded "><a href="development/demo.html">Demo scripts</a></li></ol></li><li class="chapter-item expanded "><a href="opentracing.html">OpenTracing</a></li><li class="chapter-item expanded "><a href="development/database_schema.html">Database Schemas</a></li><li class="chapter-item expanded "><a href="development/experimental_features.html">Experimental features</a></li><li class="chapter-item expanded "><a href="development/dependencies.html">Dependency management</a></li><li class="chapter-item expanded "><div>Synapse Architecture</div></li><li><ol class="section"><li class="chapter-item expanded "><a href="development/synapse_architecture/cancellation.html">Cancellation</a></li><li class="chapter-item expanded "><a href="log_contexts.html">Log Contexts</a></li><li class="chapter-item expanded "><a href="replication.html">Replication</a></li><li class="chapter-item expanded "><a href="tcp_replication.html">TCP Replication</a></li><li class="chapter-item expanded "><a href="development/synapse_architecture/faster_joins.html">Faster remote joins</a></li></ol></li><li class="chapter-item expanded "><a href="development/internal_documentation/index.html">Internal Documentation</a></li><li><ol class="section"><li class="chapter-item expanded "><div>Single Sign-On</div></li><li><ol class="section"><li class="chapter-item expanded "><a href="development/saml.html">SAML</a></li><li class="chapter-item expanded "><a href="development/cas.html">CAS</a></li></ol></li><li class="chapter-item expanded "><a href="development/room-dag-concepts.html">Room DAG concepts</a></li><li class="chapter-item expanded "><div>State Resolution</div></li><li><ol class="section"><li class="chapter-item expanded "><a href="auth_chain_difference_algorithm.html">The Auth Chain Difference Algorithm</a></li></ol></li><li class="chapter-item expanded "><a href="media_repository.html">Media Repository</a></li><li class="chapter-item expanded "><a href="room_and_user_statistics.html">Room and User Statistics</a></li></ol></li><li class="chapter-item expanded "><div>Scripts</div></li><li class="chapter-item expanded affix "><li class="part-title">Other</li><li class="chapter-item expanded "><a href="deprecation_policy.html">Dependency Deprecation Policy</a></li><li class="chapter-item expanded "><a href="other/running_synapse_on_single_board_computers.html">Running Synapse on a Single-Board Computer</a></li></ol>
  75. </div>
  76. <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
  77. </nav>
  78. <div id="page-wrapper" class="page-wrapper">
  79. <div class="page">
  80. <div id="menu-bar-hover-placeholder"></div>
  81. <div id="menu-bar" class="menu-bar sticky bordered">
  82. <div class="left-buttons">
  83. <button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
  84. <i class="fa fa-bars"></i>
  85. </button>
  86. <button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
  87. <i class="fa fa-paint-brush"></i>
  88. </button>
  89. <ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
  90. <li role="none"><button role="menuitem" class="theme" id="light">Light (default)</button></li>
  91. <li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
  92. <li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
  93. <li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
  94. <li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
  95. </ul>
  96. <button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
  97. <i class="fa fa-search"></i>
  98. </button>
  99. <div class="version-picker">
  100. <div class="dropdown">
  101. <div class="select">
  102. <span></span>
  103. <i class="fa fa-chevron-down"></i>
  104. </div>
  105. <input type="hidden" name="version">
  106. <ul class="dropdown-menu">
  107. <!-- Versions will be added dynamically in version-picker.js -->
  108. </ul>
  109. </div>
  110. </div>
  111. </div>
  112. <h1 class="menu-title">Synapse</h1>
  113. <div class="right-buttons">
  114. <a href="print.html" title="Print this book" aria-label="Print this book">
  115. <i id="print-button" class="fa fa-print"></i>
  116. </a>
  117. <a href="https://github.com/matrix-org/synapse" title="Git repository" aria-label="Git repository">
  118. <i id="git-repository-button" class="fa fa-github"></i>
  119. </a>
  120. <a href="https://github.com/matrix-org/synapse/edit/develop/docs/workers.md" title="Suggest an edit" aria-label="Suggest an edit">
  121. <i id="git-edit-button" class="fa fa-edit"></i>
  122. </a>
  123. </div>
  124. </div>
  125. <div id="search-wrapper" class="hidden">
  126. <form id="searchbar-outer" class="searchbar-outer">
  127. <input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
  128. </form>
  129. <div id="searchresults-outer" class="searchresults-outer hidden">
  130. <div id="searchresults-header" class="searchresults-header"></div>
  131. <ul id="searchresults">
  132. </ul>
  133. </div>
  134. </div>
  135. <!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
  136. <script type="text/javascript">
  137. document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
  138. document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
  139. Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
  140. link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
  141. });
  142. </script>
  143. <div id="content" class="content">
  144. <main>
  145. <!-- Page table of contents -->
  146. <div class="sidetoc">
  147. <nav class="pagetoc"></nav>
  148. </div>
  149. <h1 id="scaling-synapse-via-workers"><a class="header" href="#scaling-synapse-via-workers">Scaling synapse via workers</a></h1>
  150. <p>For small instances it is recommended to run Synapse in the default monolith mode.
  151. For larger instances where performance is a concern it can be helpful to split
  152. out functionality into multiple separate python processes. These processes are
  153. called 'workers', and are (eventually) intended to scale horizontally
  154. independently.</p>
  155. <p>Synapse's worker support is under active development and subject to change as
  156. we attempt to rapidly scale ever larger Synapse instances. However we are
  157. documenting it here to help admins needing a highly scalable Synapse instance
  158. similar to the one running <code>matrix.org</code>.</p>
  159. <p>All processes continue to share the same database instance, and as such,
  160. workers only work with PostgreSQL-based Synapse deployments. SQLite should only
  161. be used for demo purposes and any admin considering workers should already be
  162. running PostgreSQL.</p>
  163. <p>See also <a href="https://matrix.org/blog/2020/11/03/how-we-fixed-synapses-scalability">Matrix.org blog post</a>
  164. for a higher level overview.</p>
  165. <h2 id="main-processworker-communication"><a class="header" href="#main-processworker-communication">Main process/worker communication</a></h2>
  166. <p>The processes communicate with each other via a Synapse-specific protocol called
  167. 'replication' (analogous to MySQL- or Postgres-style database replication) which
  168. feeds streams of newly written data between processes so they can be kept in
  169. sync with the database state.</p>
  170. <p>When configured to do so, Synapse uses a
  171. <a href="https://redis.io/docs/manual/pubsub/">Redis pub/sub channel</a> to send the replication
  172. stream between all configured Synapse processes. Additionally, processes may
  173. make HTTP requests to each other, primarily for operations which need to wait
  174. for a reply ─ such as sending an event.</p>
  175. <p>All the workers and the main process connect to Redis, which relays replication
  176. commands between processes.</p>
  177. <p>If Redis support is enabled Synapse will use it as a shared cache, as well as a
  178. pub/sub mechanism.</p>
  179. <p>See the <a href="#architectural-diagram">Architectural diagram</a> section at the end for
  180. a visualisation of what this looks like.</p>
  181. <h2 id="setting-up-workers"><a class="header" href="#setting-up-workers">Setting up workers</a></h2>
  182. <p>A Redis server is required to manage the communication between the processes.
  183. The Redis server should be installed following the normal procedure for your
  184. distribution (e.g. <code>apt install redis-server</code> on Debian). It is safe to use an
  185. existing Redis deployment if you have one.</p>
  186. <p>Once installed, check that Redis is running and accessible from the host running
  187. Synapse, for example by executing <code>echo PING | nc -q1 localhost 6379</code> and seeing
  188. a response of <code>+PONG</code>.</p>
  189. <p>The appropriate dependencies must also be installed for Synapse. If using a
  190. virtualenv, these can be installed with:</p>
  191. <pre><code class="language-sh">pip install &quot;matrix-synapse[redis]&quot;
  192. </code></pre>
  193. <p>Note that these dependencies are included when synapse is installed with <code>pip install matrix-synapse[all]</code>. They are also included in the debian packages from
  194. <code>matrix.org</code> and in the docker images at
  195. https://hub.docker.com/r/matrixdotorg/synapse/.</p>
  196. <p>To make effective use of the workers, you will need to configure an HTTP
  197. reverse-proxy such as nginx or haproxy, which will direct incoming requests to
  198. the correct worker, or to the main synapse instance. See
  199. <a href="reverse_proxy.html">the reverse proxy documentation</a> for information on setting up a reverse
  200. proxy.</p>
  201. <p>When using workers, each worker process has its own configuration file which
  202. contains settings specific to that worker, such as the HTTP listener that it
  203. provides (if any), logging configuration, etc.</p>
  204. <p>Normally, the worker processes are configured to read from a shared
  205. configuration file as well as the worker-specific configuration files. This
  206. makes it easier to keep common configuration settings synchronised across all
  207. the processes.</p>
  208. <p>The main process is somewhat special in this respect: it does not normally
  209. need its own configuration file and can take all of its configuration from the
  210. shared configuration file.</p>
  211. <h3 id="shared-configuration"><a class="header" href="#shared-configuration">Shared configuration</a></h3>
  212. <p>Normally, only a few changes are needed to make an existing configuration
  213. file suitable for use with workers:</p>
  214. <ul>
  215. <li>First, you need to enable an
  216. <a href="usage/configuration/config_documentation.html#listeners">&quot;HTTP replication listener&quot;</a>
  217. for the main process</li>
  218. <li>Secondly, you need to enable
  219. <a href="usage/configuration/config_documentation.html#redis">redis-based replication</a></li>
  220. <li>You will need to add an <a href="usage/configuration/config_documentation.html#instance_map"><code>instance_map</code></a>
  221. with the <code>main</code> process defined, as well as the relevant connection information from
  222. it's HTTP <code>replication</code> listener (defined in step 1 above). Note that the <code>host</code> defined
  223. is the address the worker needs to look for the <code>main</code> process at, not necessarily the same address that is bound to.</li>
  224. <li>Optionally, a <a href="usage/configuration/config_documentation.html#worker_replication_secret">shared secret</a>
  225. can be used to authenticate HTTP traffic between workers. For example:</li>
  226. </ul>
  227. <pre><code class="language-yaml"># extend the existing `listeners` section. This defines the ports that the
  228. # main process will listen on.
  229. listeners:
  230. # The HTTP replication port
  231. - port: 9093
  232. bind_address: '127.0.0.1'
  233. type: http
  234. resources:
  235. - names: [replication]
  236. # Add a random shared secret to authenticate traffic.
  237. worker_replication_secret: &quot;&quot;
  238. redis:
  239. enabled: true
  240. instance_map:
  241. main:
  242. host: 'localhost'
  243. port: 9093
  244. </code></pre>
  245. <p>See the <a href="usage/configuration/config_documentation.html">configuration manual</a>
  246. for the full documentation of each option.</p>
  247. <p>Under <strong>no circumstances</strong> should the replication listener be exposed to the
  248. public internet; replication traffic is:</p>
  249. <ul>
  250. <li>always unencrypted</li>
  251. <li>unauthenticated, unless <a href="usage/configuration/config_documentation.html#worker_replication_secret"><code>worker_replication_secret</code></a>
  252. is configured</li>
  253. </ul>
  254. <h3 id="worker-configuration"><a class="header" href="#worker-configuration">Worker configuration</a></h3>
  255. <p>In the config file for each worker, you must specify:</p>
  256. <ul>
  257. <li>The type of worker (<a href="usage/configuration/config_documentation.html#worker_app"><code>worker_app</code></a>).
  258. The currently available worker applications are listed <a href="#available-worker-applications">below</a>.</li>
  259. <li>A unique name for the worker (<a href="usage/configuration/config_documentation.html#worker_name"><code>worker_name</code></a>).</li>
  260. <li>If handling HTTP requests, a <a href="usage/configuration/config_documentation.html#worker_listeners"><code>worker_listeners</code></a> option
  261. with an <code>http</code> listener.</li>
  262. <li><strong>Synapse 1.72 and older:</strong> if handling the <code>^/_matrix/client/v3/keys/upload</code> endpoint, the HTTP URI for
  263. the main process (<code>worker_main_http_uri</code>). This config option is no longer required and is ignored when running Synapse 1.73 and newer.</li>
  264. <li><strong>Synapse 1.83 and older:</strong> The HTTP replication endpoint that the worker should talk to on the main synapse process
  265. (<a href="usage/configuration/config_documentation.html#worker_replication_host"><code>worker_replication_host</code></a> and
  266. <a href="usage/configuration/config_documentation.html#worker_replication_http_port"><code>worker_replication_http_port</code></a>). If using Synapse 1.84 and newer, these are not needed if <code>main</code> is defined on the <a href="#shared-configuration">shared configuration</a> <code>instance_map</code></li>
  267. </ul>
  268. <p>For example:</p>
  269. <pre><code class="language-yaml">worker_app: synapse.app.generic_worker
  270. worker_name: generic_worker1
  271. worker_listeners:
  272. - type: http
  273. port: 8083
  274. x_forwarded: true
  275. resources:
  276. - names: [client, federation]
  277. worker_log_config: /etc/matrix-synapse/generic-worker-log.yaml
  278. </code></pre>
  279. <p>...is a full configuration for a generic worker instance, which will expose a
  280. plain HTTP endpoint on port 8083 separately serving various endpoints, e.g.
  281. <code>/sync</code>, which are listed below.</p>
  282. <p>Obviously you should configure your reverse-proxy to route the relevant
  283. endpoints to the worker (<code>localhost:8083</code> in the above example).</p>
  284. <h3 id="running-synapse-with-workers"><a class="header" href="#running-synapse-with-workers">Running Synapse with workers</a></h3>
  285. <p>Finally, you need to start your worker processes. This can be done with either
  286. <code>synctl</code> or your distribution's preferred service manager such as <code>systemd</code>. We
  287. recommend the use of <code>systemd</code> where available: for information on setting up
  288. <code>systemd</code> to start synapse workers, see
  289. <a href="systemd-with-workers/">Systemd with Workers</a>. To use <code>synctl</code>, see
  290. <a href="synctl_workers.html">Using synctl with Workers</a>.</p>
  291. <h2 id="start-synapse-with-poetry"><a class="header" href="#start-synapse-with-poetry">Start Synapse with Poetry</a></h2>
  292. <p>The following applies to Synapse installations that have been installed from source using <code>poetry</code>.</p>
  293. <p>You can start the main Synapse process with Poetry by running the following command:</p>
  294. <pre><code class="language-console">poetry run synapse_homeserver -c [your homeserver.yaml]
  295. </code></pre>
  296. <p>For worker setups, you can run the following command</p>
  297. <pre><code class="language-console">poetry run synapse_worker -c [your worker.yaml]
  298. </code></pre>
  299. <h2 id="available-worker-applications"><a class="header" href="#available-worker-applications">Available worker applications</a></h2>
  300. <h3 id="synapseappgeneric_worker"><a class="header" href="#synapseappgeneric_worker"><code>synapse.app.generic_worker</code></a></h3>
  301. <p>This worker can handle API requests matching the following regular expressions.
  302. These endpoints can be routed to any worker. If a worker is set up to handle a
  303. stream then, for maximum efficiency, additional endpoints should be routed to that
  304. worker: refer to the <a href="#stream-writers">stream writers</a> section below for further
  305. information.</p>
  306. <pre><code># Sync requests
  307. ^/_matrix/client/(r0|v3)/sync$
  308. ^/_matrix/client/(api/v1|r0|v3)/events$
  309. ^/_matrix/client/(api/v1|r0|v3)/initialSync$
  310. ^/_matrix/client/(api/v1|r0|v3)/rooms/[^/]+/initialSync$
  311. # Federation requests
  312. ^/_matrix/federation/v1/event/
  313. ^/_matrix/federation/v1/state/
  314. ^/_matrix/federation/v1/state_ids/
  315. ^/_matrix/federation/v1/backfill/
  316. ^/_matrix/federation/v1/get_missing_events/
  317. ^/_matrix/federation/v1/publicRooms
  318. ^/_matrix/federation/v1/query/
  319. ^/_matrix/federation/v1/make_join/
  320. ^/_matrix/federation/v1/make_leave/
  321. ^/_matrix/federation/(v1|v2)/send_join/
  322. ^/_matrix/federation/(v1|v2)/send_leave/
  323. ^/_matrix/federation/(v1|v2)/invite/
  324. ^/_matrix/federation/v1/event_auth/
  325. ^/_matrix/federation/v1/timestamp_to_event/
  326. ^/_matrix/federation/v1/exchange_third_party_invite/
  327. ^/_matrix/federation/v1/user/devices/
  328. ^/_matrix/key/v2/query
  329. ^/_matrix/federation/v1/hierarchy/
  330. # Inbound federation transaction request
  331. ^/_matrix/federation/v1/send/
  332. # Client API requests
  333. ^/_matrix/client/(api/v1|r0|v3|unstable)/createRoom$
  334. ^/_matrix/client/(api/v1|r0|v3|unstable)/publicRooms$
  335. ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/joined_members$
  336. ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/context/.*$
  337. ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/members$
  338. ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/state$
  339. ^/_matrix/client/v1/rooms/.*/hierarchy$
  340. ^/_matrix/client/(v1|unstable)/rooms/.*/relations/
  341. ^/_matrix/client/v1/rooms/.*/threads$
  342. ^/_matrix/client/unstable/org.matrix.msc2716/rooms/.*/batch_send$
  343. ^/_matrix/client/unstable/im.nheko.summary/rooms/.*/summary$
  344. ^/_matrix/client/(r0|v3|unstable)/account/3pid$
  345. ^/_matrix/client/(r0|v3|unstable)/account/whoami$
  346. ^/_matrix/client/(r0|v3|unstable)/devices$
  347. ^/_matrix/client/versions$
  348. ^/_matrix/client/(api/v1|r0|v3|unstable)/voip/turnServer$
  349. ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/event/
  350. ^/_matrix/client/(api/v1|r0|v3|unstable)/joined_rooms$
  351. ^/_matrix/client/v1/rooms/.*/timestamp_to_event$
  352. ^/_matrix/client/(api/v1|r0|v3|unstable/.*)/rooms/.*/aliases
  353. ^/_matrix/client/(api/v1|r0|v3|unstable)/search$
  354. ^/_matrix/client/(r0|v3|unstable)/user/.*/filter(/|$)
  355. ^/_matrix/client/(api/v1|r0|v3|unstable)/directory/room/.*$
  356. ^/_matrix/client/(r0|v3|unstable)/capabilities$
  357. # Encryption requests
  358. ^/_matrix/client/(r0|v3|unstable)/keys/query$
  359. ^/_matrix/client/(r0|v3|unstable)/keys/changes$
  360. ^/_matrix/client/(r0|v3|unstable)/keys/claim$
  361. ^/_matrix/client/(r0|v3|unstable)/room_keys/
  362. ^/_matrix/client/(r0|v3|unstable)/keys/upload/
  363. # Registration/login requests
  364. ^/_matrix/client/(api/v1|r0|v3|unstable)/login$
  365. ^/_matrix/client/(r0|v3|unstable)/register$
  366. ^/_matrix/client/(r0|v3|unstable)/register/available$
  367. ^/_matrix/client/v1/register/m.login.registration_token/validity$
  368. ^/_matrix/client/(r0|v3|unstable)/password_policy$
  369. # Event sending requests
  370. ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/redact
  371. ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/send
  372. ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/state/
  373. ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/(join|invite|leave|ban|unban|kick)$
  374. ^/_matrix/client/(api/v1|r0|v3|unstable)/join/
  375. ^/_matrix/client/(api/v1|r0|v3|unstable)/knock/
  376. ^/_matrix/client/(api/v1|r0|v3|unstable)/profile/
  377. # Account data requests
  378. ^/_matrix/client/(r0|v3|unstable)/.*/tags
  379. ^/_matrix/client/(r0|v3|unstable)/.*/account_data
  380. # Receipts requests
  381. ^/_matrix/client/(r0|v3|unstable)/rooms/.*/receipt
  382. ^/_matrix/client/(r0|v3|unstable)/rooms/.*/read_markers
  383. # Presence requests
  384. ^/_matrix/client/(api/v1|r0|v3|unstable)/presence/
  385. # User directory search requests
  386. ^/_matrix/client/(r0|v3|unstable)/user_directory/search$
  387. </code></pre>
  388. <p>Additionally, the following REST endpoints can be handled for GET requests:</p>
  389. <pre><code>^/_matrix/client/(api/v1|r0|v3|unstable)/pushrules/
  390. </code></pre>
  391. <p>Pagination requests can also be handled, but all requests for a given
  392. room must be routed to the same instance. Additionally, care must be taken to
  393. ensure that the purge history admin API is not used while pagination requests
  394. for the room are in flight:</p>
  395. <pre><code>^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/messages$
  396. </code></pre>
  397. <p>Additionally, the following endpoints should be included if Synapse is configured
  398. to use SSO (you only need to include the ones for whichever SSO provider you're
  399. using):</p>
  400. <pre><code># for all SSO providers
  401. ^/_matrix/client/(api/v1|r0|v3|unstable)/login/sso/redirect
  402. ^/_synapse/client/pick_idp$
  403. ^/_synapse/client/pick_username
  404. ^/_synapse/client/new_user_consent$
  405. ^/_synapse/client/sso_register$
  406. # OpenID Connect requests.
  407. ^/_synapse/client/oidc/callback$
  408. # SAML requests.
  409. ^/_synapse/client/saml2/authn_response$
  410. # CAS requests.
  411. ^/_matrix/client/(api/v1|r0|v3|unstable)/login/cas/ticket$
  412. </code></pre>
  413. <p>Ensure that all SSO logins go to a single process.
  414. For multiple workers not handling the SSO endpoints properly, see
  415. <a href="https://github.com/matrix-org/synapse/issues/7530">#7530</a> and
  416. <a href="https://github.com/matrix-org/synapse/issues/9427">#9427</a>.</p>
  417. <p>Note that a <a href="usage/configuration/config_documentation.html#listeners">HTTP listener</a>
  418. with <code>client</code> and <code>federation</code> <code>resources</code> must be configured in the
  419. <a href="usage/configuration/config_documentation.html#worker_listeners"><code>worker_listeners</code></a>
  420. option in the worker config.</p>
  421. <h4 id="load-balancing"><a class="header" href="#load-balancing">Load balancing</a></h4>
  422. <p>It is possible to run multiple instances of this worker app, with incoming requests
  423. being load-balanced between them by the reverse-proxy. However, different endpoints
  424. have different characteristics and so admins
  425. may wish to run multiple groups of workers handling different endpoints so that
  426. load balancing can be done in different ways.</p>
  427. <p>For <code>/sync</code> and <code>/initialSync</code> requests it will be more efficient if all
  428. requests from a particular user are routed to a single instance. This can
  429. be done in reverse proxy by extracting username part from the users access token.</p>
  430. <p>Admins may additionally wish to separate out <code>/sync</code>
  431. requests that have a <code>since</code> query parameter from those that don't (and
  432. <code>/initialSync</code>), as requests that don't are known as &quot;initial sync&quot; that happens
  433. when a user logs in on a new device and can be <em>very</em> resource intensive, so
  434. isolating these requests will stop them from interfering with other users ongoing
  435. syncs.</p>
  436. <p>Example <code>nginx</code> configuration snippet that handles the cases above. This is just an
  437. example and probably requires some changes according to your particular setup:</p>
  438. <pre><code class="language-nginx"># Choose sync worker based on the existence of &quot;since&quot; query parameter
  439. map $arg_since $sync {
  440. default synapse_sync;
  441. '' synapse_initial_sync;
  442. }
  443. # Extract username from access token passed as URL parameter
  444. map $arg_access_token $accesstoken_from_urlparam {
  445. # Defaults to just passing back the whole accesstoken
  446. default $arg_access_token;
  447. # Try to extract username part from accesstoken URL parameter
  448. &quot;~syt_(?&lt;username&gt;.*?)_.*&quot; $username;
  449. }
  450. # Extract username from access token passed as authorization header
  451. map $http_authorization $mxid_localpart {
  452. # Defaults to just passing back the whole accesstoken
  453. default $http_authorization;
  454. # Try to extract username part from accesstoken header
  455. &quot;~Bearer syt_(?&lt;username&gt;.*?)_.*&quot; $username;
  456. # if no authorization-header exist, try mapper for URL parameter &quot;access_token&quot;
  457. &quot;&quot; $accesstoken_from_urlparam;
  458. }
  459. upstream synapse_initial_sync {
  460. # Use the username mapper result for hash key
  461. hash $mxid_localpart consistent;
  462. server 127.0.0.1:8016;
  463. server 127.0.0.1:8036;
  464. }
  465. upstream synapse_sync {
  466. # Use the username mapper result for hash key
  467. hash $mxid_localpart consistent;
  468. server 127.0.0.1:8013;
  469. server 127.0.0.1:8037;
  470. server 127.0.0.1:8038;
  471. server 127.0.0.1:8039;
  472. }
  473. # Sync initial/normal
  474. location ~ ^/_matrix/client/(r0|v3)/sync$ {
  475. proxy_pass http://$sync;
  476. }
  477. # Normal sync
  478. location ~ ^/_matrix/client/(api/v1|r0|v3)/events$ {
  479. proxy_pass http://synapse_sync;
  480. }
  481. # Initial_sync
  482. location ~ ^/_matrix/client/(api/v1|r0|v3)/initialSync$ {
  483. proxy_pass http://synapse_initial_sync;
  484. }
  485. location ~ ^/_matrix/client/(api/v1|r0|v3)/rooms/[^/]+/initialSync$ {
  486. proxy_pass http://synapse_initial_sync;
  487. }
  488. </code></pre>
  489. <p>Federation and client requests can be balanced via simple round robin.</p>
  490. <p>The inbound federation transaction request <code>^/_matrix/federation/v1/send/</code>
  491. should be balanced by source IP so that transactions from the same remote server
  492. go to the same process.</p>
  493. <p>Registration/login requests can be handled separately purely to help ensure that
  494. unexpected load doesn't affect new logins and sign ups.</p>
  495. <p>Finally, event sending requests can be balanced by the room ID in the URI (or
  496. the full URI, or even just round robin), the room ID is the path component after
  497. <code>/rooms/</code>. If there is a large bridge connected that is sending or may send lots
  498. of events, then a dedicated set of workers can be provisioned to limit the
  499. effects of bursts of events from that bridge on events sent by normal users.</p>
  500. <h4 id="stream-writers"><a class="header" href="#stream-writers">Stream writers</a></h4>
  501. <p>Additionally, the writing of specific streams (such as events) can be moved off
  502. of the main process to a particular worker.</p>
  503. <p>To enable this, the worker must have:</p>
  504. <ul>
  505. <li>An <a href="usage/configuration/config_documentation.html#listeners">HTTP <code>replication</code> listener</a> configured,</li>
  506. <li>Have a <a href="usage/configuration/config_documentation.html#worker_name"><code>worker_name</code></a>
  507. and be listed in the <a href="usage/configuration/config_documentation.html#instance_map"><code>instance_map</code></a>
  508. config. </li>
  509. <li>Have the main process declared on the <a href="usage/configuration/config_documentation.html#instance_map"><code>instance_map</code></a> as well.</li>
  510. </ul>
  511. <p>Note: The same worker can handle multiple streams, but unless otherwise documented,
  512. each stream can only have a single writer.</p>
  513. <p>For example, to move event persistence off to a dedicated worker, the shared
  514. configuration would include:</p>
  515. <pre><code class="language-yaml">instance_map:
  516. main:
  517. host: localhost
  518. port: 8030
  519. event_persister1:
  520. host: localhost
  521. port: 8034
  522. stream_writers:
  523. events: event_persister1
  524. </code></pre>
  525. <p>An example for a stream writer instance:</p>
  526. <pre><code class="language-yaml">worker_app: synapse.app.generic_worker
  527. worker_name: event_persister1
  528. # The replication listener on the main synapse process.
  529. worker_replication_host: 127.0.0.1
  530. worker_replication_http_port: 9093
  531. worker_listeners:
  532. - type: http
  533. port: 8034
  534. resources:
  535. - names: [replication]
  536. # Enable listener if this stream writer handles endpoints for the `typing` or
  537. # `to_device` streams. Uses a different port to the `replication` listener to
  538. # avoid exposing the `replication` listener publicly.
  539. #
  540. #- type: http
  541. # port: 8035
  542. # x_forwarded: true
  543. # resources:
  544. # - names: [client]
  545. worker_log_config: /etc/matrix-synapse/event-persister-log.yaml
  546. </code></pre>
  547. <p>Some of the streams have associated endpoints which, for maximum efficiency, should
  548. be routed to the workers handling that stream. See below for the currently supported
  549. streams and the endpoints associated with them:</p>
  550. <h5 id="the-events-stream"><a class="header" href="#the-events-stream">The <code>events</code> stream</a></h5>
  551. <p>The <code>events</code> stream experimentally supports having multiple writer workers, where load
  552. is sharded between them by room ID. Each writer is called an <em>event persister</em>. They are
  553. responsible for</p>
  554. <ul>
  555. <li>receiving new events,</li>
  556. <li>linking them to those already in the room <a href="development/room-dag-concepts.html">DAG</a>,</li>
  557. <li>persisting them to the DB, and finally</li>
  558. <li>updating the events stream.</li>
  559. </ul>
  560. <p>Because load is sharded in this way, you <em>must</em> restart all worker instances when
  561. adding or removing event persisters.</p>
  562. <p>An <code>event_persister</code> should not be mistaken for an <code>event_creator</code>.
  563. An <code>event_creator</code> listens for requests from clients to create new events and does
  564. so. It will then pass those events over HTTP replication to any configured event
  565. persisters (or the main process if none are configured).</p>
  566. <p>Note that <code>event_creator</code>s and <code>event_persister</code>s are implemented using the same
  567. <a href="#synapseappgeneric_worker"><code>synapse.app.generic_worker</code></a>.</p>
  568. <p>An example <a href="usage/configuration/config_documentation.html#stream_writers"><code>stream_writers</code></a>
  569. configuration with multiple writers:</p>
  570. <pre><code class="language-yaml">stream_writers:
  571. events:
  572. - event_persister1
  573. - event_persister2
  574. </code></pre>
  575. <h5 id="the-typing-stream"><a class="header" href="#the-typing-stream">The <code>typing</code> stream</a></h5>
  576. <p>The following endpoints should be routed directly to the worker configured as
  577. the stream writer for the <code>typing</code> stream:</p>
  578. <pre><code>^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/typing
  579. </code></pre>
  580. <h5 id="the-to_device-stream"><a class="header" href="#the-to_device-stream">The <code>to_device</code> stream</a></h5>
  581. <p>The following endpoints should be routed directly to the worker configured as
  582. the stream writer for the <code>to_device</code> stream:</p>
  583. <pre><code>^/_matrix/client/(r0|v3|unstable)/sendToDevice/
  584. </code></pre>
  585. <h5 id="the-account_data-stream"><a class="header" href="#the-account_data-stream">The <code>account_data</code> stream</a></h5>
  586. <p>The following endpoints should be routed directly to the worker configured as
  587. the stream writer for the <code>account_data</code> stream:</p>
  588. <pre><code>^/_matrix/client/(r0|v3|unstable)/.*/tags
  589. ^/_matrix/client/(r0|v3|unstable)/.*/account_data
  590. </code></pre>
  591. <h5 id="the-receipts-stream"><a class="header" href="#the-receipts-stream">The <code>receipts</code> stream</a></h5>
  592. <p>The following endpoints should be routed directly to the worker configured as
  593. the stream writer for the <code>receipts</code> stream:</p>
  594. <pre><code>^/_matrix/client/(r0|v3|unstable)/rooms/.*/receipt
  595. ^/_matrix/client/(r0|v3|unstable)/rooms/.*/read_markers
  596. </code></pre>
  597. <h5 id="the-presence-stream"><a class="header" href="#the-presence-stream">The <code>presence</code> stream</a></h5>
  598. <p>The following endpoints should be routed directly to the worker configured as
  599. the stream writer for the <code>presence</code> stream:</p>
  600. <pre><code>^/_matrix/client/(api/v1|r0|v3|unstable)/presence/
  601. </code></pre>
  602. <h4 id="background-tasks"><a class="header" href="#background-tasks">Background tasks</a></h4>
  603. <p>There is also support for moving background tasks to a separate
  604. worker. Background tasks are run periodically or started via replication. Exactly
  605. which tasks are configured to run depends on your Synapse configuration (e.g. if
  606. stats is enabled). This worker doesn't handle any REST endpoints itself.</p>
  607. <p>To enable this, the worker must have a unique
  608. <a href="usage/configuration/config_documentation.html#worker_name"><code>worker_name</code></a>
  609. and can be configured to run background tasks. For example, to move background tasks
  610. to a dedicated worker, the shared configuration would include:</p>
  611. <pre><code class="language-yaml">run_background_tasks_on: background_worker
  612. </code></pre>
  613. <p>You might also wish to investigate the
  614. <a href="#updating-the-user-directory"><code>update_user_directory_from_worker</code></a> and
  615. <a href="#synapseappmedia_repository"><code>media_instance_running_background_jobs</code></a> settings.</p>
  616. <p>An example for a dedicated background worker instance:</p>
  617. <pre><code class="language-yaml">worker_app: synapse.app.generic_worker
  618. worker_name: background_worker
  619. # The replication listener on the main synapse process.
  620. worker_replication_host: 127.0.0.1
  621. worker_replication_http_port: 9093
  622. worker_log_config: /etc/matrix-synapse/background-worker-log.yaml
  623. </code></pre>
  624. <h4 id="updating-the-user-directory"><a class="header" href="#updating-the-user-directory">Updating the User Directory</a></h4>
  625. <p>You can designate one generic worker to update the user directory.</p>
  626. <p>Specify its name in the <a href="usage/configuration/config_documentation.html#update_user_directory_from_worker">shared configuration</a>
  627. as follows:</p>
  628. <pre><code class="language-yaml">update_user_directory_from_worker: worker_name
  629. </code></pre>
  630. <p>This work cannot be load-balanced; please ensure the main process is restarted
  631. after setting this option in the shared configuration!</p>
  632. <p>User directory updates allow REST endpoints matching the following regular
  633. expressions to work:</p>
  634. <pre><code>^/_matrix/client/(r0|v3|unstable)/user_directory/search$
  635. </code></pre>
  636. <p>The above endpoints can be routed to any worker, though you may choose to route
  637. it to the chosen user directory worker.</p>
  638. <p>This style of configuration supersedes the legacy <code>synapse.app.user_dir</code>
  639. worker application type.</p>
  640. <h4 id="notifying-application-services"><a class="header" href="#notifying-application-services">Notifying Application Services</a></h4>
  641. <p>You can designate one generic worker to send output traffic to Application Services.
  642. Doesn't handle any REST endpoints itself, but you should specify its name in the
  643. <a href="usage/configuration/config_documentation.html#notify_appservices_from_worker">shared configuration</a>
  644. as follows:</p>
  645. <pre><code class="language-yaml">notify_appservices_from_worker: worker_name
  646. </code></pre>
  647. <p>This work cannot be load-balanced; please ensure the main process is restarted
  648. after setting this option in the shared configuration!</p>
  649. <p>This style of configuration supersedes the legacy <code>synapse.app.appservice</code>
  650. worker application type.</p>
  651. <h4 id="push-notifications"><a class="header" href="#push-notifications">Push Notifications</a></h4>
  652. <p>You can designate generic worker to sending push notifications to
  653. a <a href="https://spec.matrix.org/v1.5/push-gateway-api/">push gateway</a> such as
  654. <a href="https://github.com/matrix-org/sygnal">sygnal</a> and email.</p>
  655. <p>This will stop the main process sending push notifications.</p>
  656. <p>The workers responsible for sending push notifications can be defined using the
  657. <a href="usage/configuration/config_documentation.html#pusher_instances"><code>pusher_instances</code></a>
  658. option. For example:</p>
  659. <pre><code class="language-yaml">pusher_instances:
  660. - pusher_worker1
  661. - pusher_worker2
  662. </code></pre>
  663. <p>Multiple workers can be added to this map, in which case the work is balanced
  664. across them. Ensure the main process and all pusher workers are restarted after changing
  665. this option.</p>
  666. <p>These workers don't need to accept incoming HTTP requests to send push notifications,
  667. so no additional reverse proxy configuration is required for pusher workers.</p>
  668. <p>This style of configuration supersedes the legacy <code>synapse.app.pusher</code>
  669. worker application type.</p>
  670. <h3 id="synapseapppusher"><a class="header" href="#synapseapppusher"><code>synapse.app.pusher</code></a></h3>
  671. <p>It is likely this option will be deprecated in the future and is not recommended for new
  672. installations. Instead, <a href="#push-notifications">use <code>synapse.app.generic_worker</code> with the <code>pusher_instances</code></a>.</p>
  673. <p>Handles sending push notifications to sygnal and email. Doesn't handle any
  674. REST endpoints itself, but you should set
  675. <a href="usage/configuration/config_documentation.html#start_pushers"><code>start_pushers: false</code></a> in the
  676. shared configuration file to stop the main synapse sending push notifications.</p>
  677. <p>To run multiple instances at once the
  678. <a href="usage/configuration/config_documentation.html#pusher_instances"><code>pusher_instances</code></a>
  679. option should list all pusher instances by their
  680. <a href="usage/configuration/config_documentation.html#worker_name"><code>worker_name</code></a>, e.g.:</p>
  681. <pre><code class="language-yaml">start_pushers: false
  682. pusher_instances:
  683. - pusher_worker1
  684. - pusher_worker2
  685. </code></pre>
  686. <p>An example for a pusher instance:</p>
  687. <pre><code class="language-yaml">worker_app: synapse.app.pusher
  688. worker_name: pusher_worker1
  689. # The replication listener on the main synapse process.
  690. worker_replication_host: 127.0.0.1
  691. worker_replication_http_port: 9093
  692. worker_log_config: /etc/matrix-synapse/pusher-worker-log.yaml
  693. </code></pre>
  694. <h3 id="synapseappappservice"><a class="header" href="#synapseappappservice"><code>synapse.app.appservice</code></a></h3>
  695. <p><strong>Deprecated as of Synapse v1.59.</strong> <a href="#notifying-application-services">Use <code>synapse.app.generic_worker</code> with the
  696. <code>notify_appservices_from_worker</code> option instead.</a></p>
  697. <p>Handles sending output traffic to Application Services. Doesn't handle any
  698. REST endpoints itself, but you should set <code>notify_appservices: False</code> in the
  699. shared configuration file to stop the main synapse sending appservice notifications.</p>
  700. <p>Note this worker cannot be load-balanced: only one instance should be active.</p>
  701. <h3 id="synapseappfederation_sender"><a class="header" href="#synapseappfederation_sender"><code>synapse.app.federation_sender</code></a></h3>
  702. <p>It is likely this option will be deprecated in the future and not recommended for
  703. new installations. Instead, <a href="usage/configuration/config_documentation.html#federation_sender_instances">use <code>synapse.app.generic_worker</code> with the <code>federation_sender_instances</code></a>.</p>
  704. <p>Handles sending federation traffic to other servers. Doesn't handle any
  705. REST endpoints itself, but you should set
  706. <a href="usage/configuration/config_documentation.html#send_federation"><code>send_federation: false</code></a>
  707. in the shared configuration file to stop the main synapse sending this traffic.</p>
  708. <p>If running multiple federation senders then you must list each
  709. instance in the
  710. <a href="usage/configuration/config_documentation.html#federation_sender_instances"><code>federation_sender_instances</code></a>
  711. option by their
  712. <a href="usage/configuration/config_documentation.html#worker_name"><code>worker_name</code></a>.
  713. All instances must be stopped and started when adding or removing instances.
  714. For example:</p>
  715. <pre><code class="language-yaml">send_federation: false
  716. federation_sender_instances:
  717. - federation_sender1
  718. - federation_sender2
  719. </code></pre>
  720. <p>An example for a federation sender instance:</p>
  721. <pre><code class="language-yaml">worker_app: synapse.app.federation_sender
  722. worker_name: federation_sender1
  723. # The replication listener on the main synapse process.
  724. worker_replication_host: 127.0.0.1
  725. worker_replication_http_port: 9093
  726. worker_log_config: /etc/matrix-synapse/federation-sender-log.yaml
  727. </code></pre>
  728. <h3 id="synapseappmedia_repository"><a class="header" href="#synapseappmedia_repository"><code>synapse.app.media_repository</code></a></h3>
  729. <p>Handles the media repository. It can handle all endpoints starting with:</p>
  730. <pre><code>/_matrix/media/
  731. </code></pre>
  732. <p>... and the following regular expressions matching media-specific administration APIs:</p>
  733. <pre><code>^/_synapse/admin/v1/purge_media_cache$
  734. ^/_synapse/admin/v1/room/.*/media.*$
  735. ^/_synapse/admin/v1/user/.*/media.*$
  736. ^/_synapse/admin/v1/media/.*$
  737. ^/_synapse/admin/v1/quarantine_media/.*$
  738. ^/_synapse/admin/v1/users/.*/media$
  739. </code></pre>
  740. <p>You should also set
  741. <a href="usage/configuration/config_documentation.html#enable_media_repo"><code>enable_media_repo: False</code></a>
  742. in the shared configuration
  743. file to stop the main synapse running background jobs related to managing the
  744. media repository. Note that doing so will prevent the main process from being
  745. able to handle the above endpoints.</p>
  746. <p>In the <code>media_repository</code> worker configuration file, configure the
  747. <a href="usage/configuration/config_documentation.html#listeners">HTTP listener</a> to
  748. expose the <code>media</code> resource. For example:</p>
  749. <pre><code class="language-yaml">worker_app: synapse.app.media_repository
  750. worker_name: media_worker
  751. # The replication listener on the main synapse process.
  752. worker_replication_host: 127.0.0.1
  753. worker_replication_http_port: 9093
  754. worker_listeners:
  755. - type: http
  756. port: 8085
  757. x_forwarded: true
  758. resources:
  759. - names: [media]
  760. worker_log_config: /etc/matrix-synapse/media-worker-log.yaml
  761. </code></pre>
  762. <p>Note that if running multiple media repositories they must be on the same server
  763. and you must specify a single instance to run the background tasks in the
  764. <a href="usage/configuration/config_documentation.html#media_instance_running_background_jobs">shared configuration</a>,
  765. e.g.:</p>
  766. <pre><code class="language-yaml">media_instance_running_background_jobs: &quot;media-repository-1&quot;
  767. </code></pre>
  768. <p>Note that if a reverse proxy is used , then <code>/_matrix/media/</code> must be routed for both inbound client and federation requests (if they are handled separately).</p>
  769. <h3 id="synapseappuser_dir"><a class="header" href="#synapseappuser_dir"><code>synapse.app.user_dir</code></a></h3>
  770. <p><strong>Deprecated as of Synapse v1.59.</strong> <a href="#updating-the-user-directory">Use <code>synapse.app.generic_worker</code> with the
  771. <code>update_user_directory_from_worker</code> option instead.</a></p>
  772. <p>Handles searches in the user directory. It can handle REST endpoints matching
  773. the following regular expressions:</p>
  774. <pre><code>^/_matrix/client/(r0|v3|unstable)/user_directory/search$
  775. </code></pre>
  776. <p>When using this worker you must also set <code>update_user_directory: false</code> in the
  777. shared configuration file to stop the main synapse running background
  778. jobs related to updating the user directory.</p>
  779. <p>Above endpoint is not <em>required</em> to be routed to this worker. By default,
  780. <code>update_user_directory</code> is set to <code>true</code>, which means the main process
  781. will handle updates. All workers configured with <code>client</code> can handle the above
  782. endpoint as long as either this worker or the main process are configured to
  783. handle it, and are online.</p>
  784. <p>If <code>update_user_directory</code> is set to <code>false</code>, and this worker is not running,
  785. the above endpoint may give outdated results.</p>
  786. <h3 id="historical-apps"><a class="header" href="#historical-apps">Historical apps</a></h3>
  787. <p>The following used to be separate worker application types, but are now
  788. equivalent to <code>synapse.app.generic_worker</code>:</p>
  789. <ul>
  790. <li><code>synapse.app.client_reader</code></li>
  791. <li><code>synapse.app.event_creator</code></li>
  792. <li><code>synapse.app.federation_reader</code></li>
  793. <li><code>synapse.app.federation_sender</code></li>
  794. <li><code>synapse.app.frontend_proxy</code></li>
  795. <li><code>synapse.app.pusher</code></li>
  796. <li><code>synapse.app.synchrotron</code></li>
  797. </ul>
  798. <h2 id="migration-from-old-config"><a class="header" href="#migration-from-old-config">Migration from old config</a></h2>
  799. <p>A main change that has occurred is the merging of worker apps into
  800. <code>synapse.app.generic_worker</code>. This change is backwards compatible and so no
  801. changes to the config are required.</p>
  802. <p>To migrate apps to use <code>synapse.app.generic_worker</code> simply update the
  803. <code>worker_app</code> option in the worker configs, and where worker are started (e.g.
  804. in systemd service files, but not required for synctl).</p>
  805. <h2 id="architectural-diagram"><a class="header" href="#architectural-diagram">Architectural diagram</a></h2>
  806. <p>The following shows an example setup using Redis and a reverse proxy:</p>
  807. <pre><code> Clients &amp; Federation
  808. |
  809. v
  810. +-----------+
  811. | |
  812. | Reverse |
  813. | Proxy |
  814. | |
  815. +-----------+
  816. | | |
  817. | | | HTTP requests
  818. +-------------------+ | +-----------+
  819. | +---+ |
  820. | | |
  821. v v v
  822. +--------------+ +--------------+ +--------------+ +--------------+
  823. | Main | | Generic | | Generic | | Event |
  824. | Process | | Worker 1 | | Worker 2 | | Persister |
  825. +--------------+ +--------------+ +--------------+ +--------------+
  826. ^ ^ | ^ | | ^ | | ^ ^
  827. | | | | | | | | | | |
  828. | | | | | HTTP | | | | | |
  829. | +----------+&lt;--|---|---------+&lt;--|---|---------+ | |
  830. | | +-------------|--&gt;+-------------+ |
  831. | | | |
  832. | | | |
  833. v v v v
  834. ======================================================================
  835. Redis pub/sub channel
  836. </code></pre>
  837. </main>
  838. <nav class="nav-wrapper" aria-label="Page navigation">
  839. <!-- Mobile navigation buttons -->
  840. <a rel="prev" href="modules/porting_legacy_module.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
  841. <i class="fa fa-angle-left"></i>
  842. </a>
  843. <a rel="next" href="synctl_workers.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
  844. <i class="fa fa-angle-right"></i>
  845. </a>
  846. <div style="clear: both"></div>
  847. </nav>
  848. </div>
  849. </div>
  850. <nav class="nav-wide-wrapper" aria-label="Page navigation">
  851. <a rel="prev" href="modules/porting_legacy_module.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
  852. <i class="fa fa-angle-left"></i>
  853. </a>
  854. <a rel="next" href="synctl_workers.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
  855. <i class="fa fa-angle-right"></i>
  856. </a>
  857. </nav>
  858. </div>
  859. <script type="text/javascript">
  860. window.playground_copyable = true;
  861. </script>
  862. <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script>
  863. <script src="mark.min.js" type="text/javascript" charset="utf-8"></script>
  864. <script src="searcher.js" type="text/javascript" charset="utf-8"></script>
  865. <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script>
  866. <script src="highlight.js" type="text/javascript" charset="utf-8"></script>
  867. <script src="book.js" type="text/javascript" charset="utf-8"></script>
  868. <!-- Custom JS scripts -->
  869. <script type="text/javascript" src="docs/website_files/table-of-contents.js"></script>
  870. <script type="text/javascript" src="docs/website_files/version-picker.js"></script>
  871. <script type="text/javascript" src="docs/website_files/version.js"></script>
  872. </body>
  873. </html>