delayer

(A pipe to delay line-based input by a given time)

SYNOPSIS

some-program | delayer [--[no-]buffered] [--delay seconds] [--store filename] -- some-other-program [args ...]

Legacy calling convention:

some-program | delayer seconds some-other-program [args ...]

DESCRIPTION

The delayer program implements a delaying pipe. Lines sent to the standard input of the process are spooled, and only printed to the standard input of some-other-program after a certain delay time has passed.

The main use case is for a news feed that deliberately should not distribute articles as soon as possible. One reason is giving cancel control articles and NoCeM messages time to arrive so that innd remembers the Message-IDs of those cancelled articles before they actually arrive. It permits cancelling articles before they are locally stored and spread to other peers. The delay can be set up for outgoing feeds wanting that or, even better for not slowing the propagation of articles, internally between a frontend instance of innd receiving the articles from all your peers and another local instance of innd fed by your frontend with a delay except for cancels and NoCeM articles.

Another use case is using a link only as a backup.

CONFIGURATION

The steps to set up a delayed feed using delayer and innfeed are:

OPTIONS

--buffered, --no-buffered

By default, output is buffered. This increases the time until an article is actually sent if the number of articles is small. Disable buffering to have a more accurate delay, at a price of a (possibly neglectable) performance overhead.

--delay seconds

Delay articles by the given amount of seconds. Default is 60.

--store filename

By default, all buffered lines are written out if the input is closed, even if the configured delay has not been reached yet.

When this flag is used, these lines will be written to the given file instead, to be used upon next startup. Using an absolute path name is recommended.

-- some-other-program [args ...]

-- separates the options to delayer from the program the output is written to: some-other-program is the full path to the program, optionally followed with some args parameters.

LEGACY OPTIONS

This interface is considered legacy and will be removed some day.

delay

Delay articles by the given amount of seconds.

some-other-program [args ...]

The full path to the program the output is written to, optionally followed with some args parameters.

BUGS

If the standard input is closed (when for instance the feed is closed or restarted), all lines in the store are printed immediately, breaking the contract of delaying them, unless the --store option is used.

If the number of articles in that feed is rather low (just a few articles per delay time or less), some effects of buffering will delay the transmission even further. See the --no-buffering option to alleviate this.

HISTORY

Initial version written in July 1998 by Christian Mock <cm@tahina.priv.at>.

Improved and documented by Christoph Biedl in January 2024.

SEE ALSO

delay(1), innfeed.conf(5), newsfeeds(5).

Last modified and spun 2024-03-16