💾 Archived View for gemini.complete.org › handling-filespooler-command-output captured on 2024-08-18 at 17:46:39. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2024-07-09)

-=-=-=-=-=-=-

Handling Filespooler Command Output

By default, Filespooler[1] doesn't do anything special with the output from the commands that `fspl queue-process` executes. If they write to stdout or stderr, you'll see this on the controlling terminal or wherever you have piped or redirected it.

1: /filespooler/

Since `fspl queue-process`, by default, will process as many jobs as it can with each invocation, this may result in the output from multiple jobs being concatenated together. In some cases, this may be undesirable. Here are some ways to work around this situation:

1. You can use `--maxjobs 1` to `fspl queue-process` to ensure that a given invocation always processes either 0 or 1 jobs.

2. You can use `--output-to SaveBoth` to `fspl queue-process`, causing Filespooler to write the output of each job to its own dedicated file (see the Filespooler Reference[2] for more details)

3. You can process output internally in the program or script that `fspl queue-process` is running. One particular option here would be to pipe the output of the executed command to `logger`, which will then log it to syslog.

2: /filespooler-reference/

--------------------------------------------------------------------------------

Links to this note

3: /filespooler-in-cron-and-systemd/

Filespooler[4] is designed to work well in automated situations, including when started from cron or systemd. It is a fairly standard program in that way. I'll discuss a few thoughts here that may help you architect your system.

4: /filespooler/

5: /introduction-to-filespooler/

It seems that lately I've written several shell implementations of a simple queue that enforces ordered execution of jobs that may arrive out of order. After writing this for the nth time in bash, I decided it was time to do it properly. But first, a word on the *why* of it all.

6: /using-filespooler-over-syncthing/

Filespooler[7] is a way to execute commands in strict order on a remote machine, and its communication method is by files. This is a perfect mix for Syncthing[8] (and others, but this page is about Filespooler and Syncthing).

7: /filespooler/

8: /syncthing/

9: /filespooler/

Filespooler lets you request the remote execution of programs, including stdin and environment. It can use tools such as S3, Dropbox, Syncthing[10], NNCP[11], ssh, UUCP[12], USB drives, CDs, etc. as transport; basically, a filesystem is the network for Filespooler.
Filespooler is particularly suited to distributed and Asynchronous Communication[13].

10: /syncthing/

11: /nncp/

12: /uucp/

13: /asynchronous-communication/

More on www.complete.org

Homepage

Interesting Topics

How This Site is Built

About John Goerzen

Web version of this site

(c) 2022-2024 John Goerzen