summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2017-11-04 14:50:10 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2017-11-04 14:50:10 +0000
commit1e3982ebb17956daeaae322c485183135fc57b26 (patch)
treecaca269f8d28aeb100399108af98f9e74449480f
parentc681d62a23a8b4ca2ecf0d6291a208ca323f0171 (diff)
downloads6-rc-1e3982ebb17956daeaae322c485183135fc57b26.tar.xz
Update documentation, prepare for 0.4.0.0
-rw-r--r--INSTALL2
-rw-r--r--NEWS14
-rw-r--r--doc/index.html4
-rw-r--r--doc/s6-rc-compile.html47
-rw-r--r--doc/upgrade.html17
-rw-r--r--package/info2
6 files changed, 68 insertions, 18 deletions
diff --git a/INSTALL b/INSTALL
index 9baba55..f6f7f2a 100644
--- a/INSTALL
+++ b/INSTALL
@@ -6,7 +6,7 @@ Build Instructions
- A POSIX-compliant C development environment
- GNU make version 3.81 or later
- - skalibs version 2.6.0.1 or later: http://skarnet.org/software/skalibs/
+ - skalibs version 2.6.1.0 or later: http://skarnet.org/software/skalibs/
- execline version 2.3.0.3 or later: http://skarnet.org/software/execline/
- s6 version 2.6.1.1 or later: http://skarnet.org/software/s6/
diff --git a/NEWS b/NEWS
index dc1e8af..d330e33 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,19 @@
Changelog for s6-rc.
+In 0.4.0.0
+----------
+
+ - s6-rc-compile now accepts several producers in a consumer-for file.
+All the producers for a service will write to the same pipe. In other
+words: pipelines are now funnels.
+ - The pipeline-name file, defining the name of a bundle containing
+all the services in a pipeline, must now be place in the definition
+directory of the last consumer in the pipeline, instead of the definition
+directory of the first producer (since the latter is not unique
+anymore).
+ - All service databases must be edited and recompiled.
+
+
In 0.3.0.0
----------
diff --git a/doc/index.html b/doc/index.html
index 544fa85..5f1b401 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -48,7 +48,7 @@ scripts are also run in a controlled environment.
<li> A POSIX-compliant system with a standard C development environment </li>
<li> GNU make, version 3.81 or later </li>
<li> <a href="//skarnet.org/software/skalibs/">skalibs</a> version
-2.6.0.1 or later </li>
+2.6.1.0 or later </li>
<li> <a href="//skarnet.org/software/execline/">execline</a> version
2.3.0.3 or later </li>
<li> <a href="//skarnet.org/software/s6/">s6</a> version
@@ -66,7 +66,7 @@ scripts are also run in a controlled environment.
<ul>
<li> The current released version of s6-rc is
-<a href="s6-rc-0.3.0.0.tar.gz">0.3.0.0</a>. </li>
+<a href="s6-rc-0.4.0.0.tar.gz">0.4.0.0</a>. </li>
<li> Alternatively, you can checkout a copy of the
<a href="//git.skarnet.org/cgi-bin/cgit.cgi/s6-rc/">s6-rc
git repository</a>:
diff --git a/doc/s6-rc-compile.html b/doc/s6-rc-compile.html
index 14bec2f..4065689 100644
--- a/doc/s6-rc-compile.html
+++ b/doc/s6-rc-compile.html
@@ -287,19 +287,20 @@ be copied verbatim into the generated service directory. </li>
it must contain the name of another longrun service <em>servicelog</em>;
<em>service</em> is then declared as a producer for <em>servicelog</em>.
<em>servicelog</em> must also, in its own definition directory,
-be declared as a consumer for <em>service</em>. </li>
+be declared as a consumer for at least <em>service</em>. </li>
<li> An optional file named <tt>consumer-for</tt>. If this file exists, then
-it must contain the name of another longrun service <em>serviceprod</em>;
-<em>service</em> is then declared as a consumer for <em>serviceprod</em>.
-<em>serviceprod</em> must also, in its own definition directory,
+it must contain a list of longrun services <em>serviceprod...</em>:
+<em>service</em> is then declared as a consumer for all the services
+in <em>serviceprod</em>. Each of those services
+must also, in its own definition directory,
be declared as a producer for <em>service</em>. </li>
<li> An optional file named <tt>pipeline-name</tt>. If this file exists
-along with a <tt>producer-for</tt> file, and there is no
-<tt>consumer-for</tt> file, then a bundle will automatically be
+along with a <tt>consumer-for</tt> file, and there is no
+<tt>producer-for</tt> file, then a bundle will automatically be
created, named with the content of the <tt>pipeline-name</tt> file, and
-containing all the services in the pipeline that starts at <em>service</em>.
+containing all the services in the pipeline that ends at <em>service</em>.
See below for more about pipelining. The <tt>pipeline-name</tt> file
-is ignored if <em>service</em> is not a first producer. </li>
+is ignored if <em>service</em> is not a last consumer. </li>
</ul>
<p>
@@ -342,12 +343,12 @@ indefinite number of longrun services this way.
</p>
<ul>
- <li> The first producer declares its direct consumer in a <tt>producer-for</tt> file. </li>
- <li> Intermediate services declare both their direct producer in their
+ <li> A producer declares its direct consumer in a <tt>producer-for</tt> file. </li>
+ <li> Intermediate services declare both their direct producers in their
<tt>consumer-for</tt> file, and their direct consumer in their
<tt>producer-for</tt> file. </li>
- <li> The last consumer only declares its direct producer in a <tt>consumer-for</tt> file. </li>
- <li> The first producer may declare a name for the whole pipeline, in
+ <li> The last consumer only declares its direct producers in a <tt>consumer-for</tt> file. </li>
+ <li> The last consumer may also declare a name for the whole pipeline, in
its <tt>pipeline-name</tt> file. If it does so, then a bundle is automatically
created with
the given name, and it contains all the services in the pipeline. </li>
@@ -360,14 +361,32 @@ that the pipes are not broken whenever one element in the chain dies.
</p>
<p>
+ A service can only be declared as a producer for <em>one</em> other
+services, but it can be declared as a consumer for several other
+services: the <em>consumer-for</em> can have several lines. This
+means that one service can only send its output to one consumer, but
+it can read its input from several producers. If there are several
+producers to a service, they will all write to the same Unix pipe
+that the service reads.
+</p>
+
+<p>
+ This means that what s6-rc calls <em>pipelines</em> are really
+<em>funnels</em>: you can collapse multiple data streams into
+a single data stream, at every step of your processing chain.
+The <em>pipeline</em> terminology remains for history reasons:
+previous versions of s6-rc could not handle multiple producers.
+</p>
+
+<p>
s6-rc-compile checks for pipeline consistency. It must see a
-<tt>producer-for</tt> file in the producer's definition that is consistent
+<tt>producer-for</tt> file in the producers' definition that is consistent
with the <tt>consumer-for</tt> file in the consumer's definition. It will
detect and reject cycles as well as collisions.
</p>
<p>
- The pipe linking a producer with a consumer is created and stored at
+ The pipe linking a set of producers with a consumer is created and stored at
run-time in a
<a href="//skarnet.org/software/s6/s6-fdholder-daemon.html">s6-fdholder-daemon</a>
instance managed by an automatically generated longrun service named
diff --git a/doc/upgrade.html b/doc/upgrade.html
index fa441d1..444b763 100644
--- a/doc/upgrade.html
+++ b/doc/upgrade.html
@@ -30,6 +30,23 @@ minor and bugfix version changes.
<h1> What has changed in s6-rc </h1>
+<h2> in 0.4.0.0 </h2>
+
+<ul>
+ <li> <a href="//skarnet.org/software/skalibs/">skalibs</a>
+dependency bumped to 2.6.1.0. </li>
+ <li> <a href="s6-rc-compile.html">s6-rc-compile</a> now
+accepts multiple lines in a <tt>consumer-for</tt> file: a
+longrun can now have multiple producers, which means that
+pipelines are really funnels. The compiled databases <strong>are not</strong>
+compatible with previous versions, and the source databases
+<strong>are not</strong> compatible either, because the
+<tt>pipeline-name</tt> file must now be present in the definition of
+the final consumer of a pipeline, not in the definition of a first
+producer (to avoid ambiguity). Edit your databases and recompile
+them. </li>
+</ul>
+
<h2> in 0.3.0.0 </h2>
<ul>
diff --git a/package/info b/package/info
index 436da19..3c354d8 100644
--- a/package/info
+++ b/package/info
@@ -1,4 +1,4 @@
package=s6-rc
-version=0.3.0.0
+version=0.4.0.0
category=admin
package_macro_name=S6RC