synctl stop: wait for processes to exit (#11459)

If you're trying to shut down Synapse, it's rather handy if it *actually* shuts
down before you move on.
This commit is contained in:
Richard van der Hoff 2021-11-30 11:51:12 +00:00 committed by GitHub
parent a9481223d1
commit f13a8d1c69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 25 deletions

View File

@ -0,0 +1 @@
`synctl stop` will now wait for Synapse to exit before returning.

39
synctl
View File

@ -24,7 +24,7 @@ import signal
import subprocess import subprocess
import sys import sys
import time import time
from typing import Iterable from typing import Iterable, Optional
import yaml import yaml
@ -109,15 +109,14 @@ def start(pidfile: str, app: str, config_files: Iterable[str], daemonize: bool)
return False return False
def stop(pidfile: str, app: str) -> bool: def stop(pidfile: str, app: str) -> Optional[int]:
"""Attempts to kill a synapse worker from the pidfile. """Attempts to kill a synapse worker from the pidfile.
Args: Args:
pidfile: path to file containing worker's pid pidfile: path to file containing worker's pid
app: name of the worker's appservice app: name of the worker's appservice
Returns: Returns:
True if the process stopped successfully process id, or None if the process was not running
False if process was already stopped or an error occured
""" """
if os.path.exists(pidfile): if os.path.exists(pidfile):
@ -125,7 +124,7 @@ def stop(pidfile: str, app: str) -> bool:
try: try:
os.kill(pid, signal.SIGTERM) os.kill(pid, signal.SIGTERM)
write("stopped %s" % (app,), colour=GREEN) write("stopped %s" % (app,), colour=GREEN)
return True return pid
except OSError as err: except OSError as err:
if err.errno == errno.ESRCH: if err.errno == errno.ESRCH:
write("%s not running" % (app,), colour=YELLOW) write("%s not running" % (app,), colour=YELLOW)
@ -133,14 +132,13 @@ def stop(pidfile: str, app: str) -> bool:
abort("Cannot stop %s: Operation not permitted" % (app,)) abort("Cannot stop %s: Operation not permitted" % (app,))
else: else:
abort("Cannot stop %s: Unknown error" % (app,)) abort("Cannot stop %s: Unknown error" % (app,))
return False
else: else:
write( write(
"No running worker of %s found (from %s)\nThe process might be managed by another controller (e.g. systemd)" "No running worker of %s found (from %s)\nThe process might be managed by another controller (e.g. systemd)"
% (app, pidfile), % (app, pidfile),
colour=YELLOW, colour=YELLOW,
) )
return False return None
Worker = collections.namedtuple( Worker = collections.namedtuple(
@ -288,32 +286,23 @@ def main():
action = options.action action = options.action
if action == "stop" or action == "restart": if action == "stop" or action == "restart":
has_stopped = True running_pids = []
for worker in workers: for worker in workers:
if not stop(worker.pidfile, worker.app): pid = stop(worker.pidfile, worker.app)
# A worker could not be stopped. if pid is not None:
has_stopped = False running_pids.append(pid)
if start_stop_synapse: if start_stop_synapse:
if not stop(pidfile, MAIN_PROCESS): pid = stop(pidfile, MAIN_PROCESS)
has_stopped = False if pid is not None:
if not has_stopped and action == "stop": running_pids.append(pid)
sys.exit(1)
# Wait for synapse to actually shutdown before starting it again
if action == "restart":
running_pids = []
if start_stop_synapse and os.path.exists(pidfile):
running_pids.append(int(open(pidfile).read()))
for worker in workers:
if os.path.exists(worker.pidfile):
running_pids.append(int(open(worker.pidfile).read()))
if len(running_pids) > 0: if len(running_pids) > 0:
write("Waiting for process to exit before restarting...") write("Waiting for processes to exit...")
for running_pid in running_pids: for running_pid in running_pids:
while pid_running(running_pid): while pid_running(running_pid):
time.sleep(0.2) time.sleep(0.2)
write("All processes exited; now restarting...") write("All processes exited")
if action == "start" or action == "restart": if action == "start" or action == "restart":
error = False error = False