From b8c19a579f778a4b607528877e62a07ecc6c33b4 Mon Sep 17 00:00:00 2001
From: Laurent Bercot
Date: Fri, 9 Oct 2020 15:47:41 +0000
Subject: Better documentation on readiness notification
---
doc/notifywhenup.html | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 99 insertions(+)
(limited to 'doc')
diff --git a/doc/notifywhenup.html b/doc/notifywhenup.html
index d788938..f7d4ce8 100644
--- a/doc/notifywhenup.html
+++ b/doc/notifywhenup.html
@@ -91,5 +91,104 @@ for readiness, and route its result into the s6 notification system:
s6-notifyoncheck.
+ How to use a check program with s6
+
+
+ - Let's say you have a daemon foo, started under s6 via a
+/run/service/foo service directory, and that comes with a
+foo-check program that exhibits different behaviours when
+foo is ready and when it is not.
+ - Create an executable script /run/service/foo/data/check
+that calls foo-check. Make sure this script exits 0 when
+foo is ready and nonzero when it's not.
+ - In your /run/service/foo/run script that starts foo,
+instead of executing into foo, execute into
+s6-notifyoncheck foo. Read the
+s6-notifyoncheck page if you need to
+give it options to tune the polling.
+ - echo 3 > /run/service/foo/notification-fd. If file descriptor
+3 is already open when your run script executes foo, replace 3 with
+a file descriptor you know is not already open.
+ - That's it.
+
+ - Your check script will be automatically invoked by
+s6-notifyoncheck, until it succeeds.
+ - s6-notifyoncheck will send the
+readiness notification to the file descriptor given in the notification-fd
+file.
+ - s6-supervise will receive it and will
+mark foo as ready.
+
+
+
+ How to design a daemon so it uses the s6 notification mechanism
+without resorting to polling
+
+
+ The s6-notifyoncheck mechanism was
+made to accommodate daemons that provide a check program but do not notify
+readiness themselves; it works, but is suboptimal.
+ If you are writing the foo daemon, here is how you can make things better:
+
+
+
+ - Readiness notification should be optional, so you should guard all
+the following with a run-time option to foo.
+ - Assume a file descriptor other than 0, 1 or 2 is going to be open.
+You can hardcode 3 (or 4); or you can make it configurable via a command line
+option. See for instance the -D notif option to the
+mdevd program. It
+really doesn't matter what this number is; the important thing is that your
+daemon knows that this fd is already open, and is not using it for another
+purpose.
+ - Do nothing with this file descriptor until your daemon is ready.
+ - When your daemon is ready, write a newline to this file descriptor.
+
+ - If you like, you may write other data before the newline, just in
+case it is printed to the terminal. It is not necessary, and it is best to
+keep that data short. If the line is read by
+s6-supervise, it will be entirely ignored;
+only the newline is important.
+
+ - Then close that file descriptor.
+
+
+
+ The user who then makes foo run under s6 just has to do the
+following:
+
+
+
+ - Write 3, or the file descriptor the foo daemon uses
+to notify readiness, to the /run/service/foo/notification-fd file.
+ - In the /run/service/foo/run script, invoke foo
+with the option that activates the readiness notification. If foo
+makes the notification fd configurable, the user needs to make sure that
+the number that is given to this option is the same as the number that is
+written in the notification-fd file.
+ - And that is all. Do not use s6-notifyoncheck
+in this case, because you do not need to poll to know whether foo
+is ready; instead, foo will directly communicate its readiness to
+s6-supervise, which is a much more efficient
+mechanism.
+
+
+ What does s6-supervise do with this
+readiness information?
+
+
+ - s6-supervise maintains a readiness
+state for other programs to read. You can check for it, for instance, via
+the s6-svstat program.
+ - s6-supervise also broadcasts the
+readiness event to programs that are waiting for it - for instance the
+s6-svwait program. This can be used to
+make sure that other programs only start when the daemon is ready. For
+instance, the
+s6-rc service manager uses
+that mechanism to handle dependencies when starting services that depend
+on daemons.
+
+