2016-06-16 06:09:15 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2016 matrix.org
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
from ._base import Config
|
|
|
|
|
|
|
|
|
|
|
|
class WorkerConfig(Config):
|
|
|
|
"""The workers are processes run separately to the main synapse process.
|
|
|
|
They have their own pid_file and listener configuration. They use the
|
2016-06-16 12:29:50 -04:00
|
|
|
replication_url to talk to the main synapse process."""
|
2016-06-16 06:09:15 -04:00
|
|
|
|
|
|
|
def read_config(self, config):
|
2016-06-16 12:29:50 -04:00
|
|
|
self.worker_app = config.get("worker_app")
|
2018-01-12 05:39:27 -05:00
|
|
|
|
|
|
|
# Canonicalise worker_app so that master always has None
|
|
|
|
if self.worker_app == "synapse.app.homeserver":
|
|
|
|
self.worker_app = None
|
|
|
|
|
2019-03-14 09:32:14 -04:00
|
|
|
self.worker_listeners = config.get("worker_listeners", [])
|
2016-06-16 12:29:50 -04:00
|
|
|
self.worker_daemonize = config.get("worker_daemonize")
|
|
|
|
self.worker_pid_file = config.get("worker_pid_file")
|
|
|
|
self.worker_log_file = config.get("worker_log_file")
|
|
|
|
self.worker_log_config = config.get("worker_log_config")
|
2018-02-05 12:22:16 -05:00
|
|
|
|
|
|
|
# The host used to connect to the main synapse
|
2017-03-27 11:33:44 -04:00
|
|
|
self.worker_replication_host = config.get("worker_replication_host", None)
|
2018-02-05 12:22:16 -05:00
|
|
|
|
|
|
|
# The port on the main synapse for TCP replication
|
2017-03-27 11:33:44 -04:00
|
|
|
self.worker_replication_port = config.get("worker_replication_port", None)
|
2018-02-05 12:22:16 -05:00
|
|
|
|
|
|
|
# The port on the main synapse for HTTP replication endpoint
|
|
|
|
self.worker_replication_http_port = config.get("worker_replication_http_port")
|
|
|
|
|
2017-03-27 11:33:44 -04:00
|
|
|
self.worker_name = config.get("worker_name", self.worker_app)
|
2017-01-20 06:45:29 -05:00
|
|
|
|
2017-07-07 13:19:46 -04:00
|
|
|
self.worker_main_http_uri = config.get("worker_main_http_uri", None)
|
2017-08-15 12:08:28 -04:00
|
|
|
self.worker_cpu_affinity = config.get("worker_cpu_affinity")
|
2017-07-07 13:19:46 -04:00
|
|
|
|
2019-03-14 09:32:14 -04:00
|
|
|
# This option is really only here to support `--manhole` command line
|
|
|
|
# argument.
|
|
|
|
manhole = config.get("worker_manhole")
|
|
|
|
if manhole:
|
|
|
|
self.worker_listeners.append({
|
|
|
|
"port": manhole,
|
|
|
|
"bind_addresses": ["127.0.0.1"],
|
|
|
|
"type": "manhole",
|
|
|
|
"tls": False,
|
|
|
|
})
|
|
|
|
|
2017-01-20 06:45:29 -05:00
|
|
|
if self.worker_listeners:
|
|
|
|
for listener in self.worker_listeners:
|
|
|
|
bind_address = listener.pop("bind_address", None)
|
|
|
|
bind_addresses = listener.setdefault("bind_addresses", [])
|
|
|
|
|
|
|
|
if bind_address:
|
|
|
|
bind_addresses.append(bind_address)
|
|
|
|
elif not bind_addresses:
|
|
|
|
bind_addresses.append('')
|
2019-03-13 13:33:54 -04:00
|
|
|
|
|
|
|
def read_arguments(self, args):
|
2019-03-14 09:32:14 -04:00
|
|
|
# We support a bunch of command line arguments that override options in
|
|
|
|
# the config. A lot of these options have a worker_* prefix when running
|
|
|
|
# on workers so we also have to override them when command line options
|
|
|
|
# are specified.
|
|
|
|
|
2019-03-13 13:33:54 -04:00
|
|
|
if args.daemonize is not None:
|
|
|
|
self.worker_daemonize = args.daemonize
|
2019-03-14 09:32:14 -04:00
|
|
|
if args.log_config is not None:
|
|
|
|
self.worker_log_config = args.log_config
|
|
|
|
if args.log_file is not None:
|
|
|
|
self.worker_log_file = args.log_file
|
|
|
|
if args.manhole is not None:
|
|
|
|
self.worker_manhole = args.worker_manhole
|