cycbuff (5) - Linux Manuals
cycbuff: Configuration file for INN CNFS storage method
NAME
cycbuff.conf - Configuration file for INN CNFS storage methodDESCRIPTION
This file defines the cyclical buffers that make up the storage pools for CNFS (Cyclic News File System). Some options controlling the behavior of the CNFS storage system can also be set here. cycbuff.conf is required if the CNFS (Cyclic News File System) storage method is used. INN will look for it in pathetc (as set in inn.conf).
CNFS stores articles in logical objects called metacycbuffs. Each
metacycbuff is in turn composed of one or more physical buffers called
cycbuffs. As articles are written to the metacycbuff, each article is
written to the next cycbuff in the list in a round-robin fashion (unless
"sequential" mode is specified, in which case each cycbuff is filled
before moving on to the next). This is so that you can distribute the
individual cycbuffs across multiple physical disks and balance the load
between them. Note that in order to use any cycbuff larger than 2
For information about how to configure INN to use CNFS, see
storage.conf(5).
Blank lines and lines beginning with a hash sign ("#") are ignored. All
other lines must be of one of the following forms:
(where items enclosed in [] are optional). Order is mostly not
significant, but all cycbuff lines must occur before all metacycbuff
lines. Long lines can be continued on the next line by ending the line
with a backslash ("\").
If you're trying to stay under 2
<name> is the symbolic name of the metacycbuff, referred to in the options:
field of "cnfs" entries in storage.conf. It must be no longer than
eight characters. <buffer> is the name of a cycbuff (the <name> part of
a cycbuff line), and any number of cycbuffs may be specified, separated
by commas.
If there is more than one cycbuff in a metacycbuff, there are two ways
that INN can distribute articles between the cycbuffs. The default mode,
"INTERLEAVE", stores the articles in each cycbuff in a round-robin fashion,
one article per cycbuff in the order listed. If the cycbuffs are of
wildly different sizes, this can cause some of them to roll over much
faster than others, and it may not give the best performance depending on
your disk layout. The other storage mode, "SEQUENTIAL", instead writes to
each cycbuff in turn until that cycbuff is full and then moves on to the
next one, returning to the first and starting a new cycle when the last
one is full. To specify a mode rather than leaving it at the default, add
a colon and the mode ("INTERLEAVE" or "SEQUENTIAL") at the end of the
metacycbuff line.
innd only reads cycbuff.conf on startup, so if you change anything
in this file and want innd to pick up the changes, you have to use
"ctlinnd xexec innd"; "ctlinnd reload all ''" is not sufficient.
When articles are stored, the cycbuff into which they're stored is saved
as part of the article token. In order for INN to retrieve articles from
a cycbuff, that cycbuff must be listed in cycbuff.conf. However, if
INN should not write to a cycbuff, it doesn't need to be (and shouldn't
be) listed in a metacycbuff.
This provides an easy way to retire a cycbuff. Just remove it from its
metacycbuff, leaving in the cycbuff line, and restart innd (with, for
example, "ctlinnd xexec innd"). No new articles will be put into the
cycbuff, but neither will any articles expire from it. After you no
longer need the articles in the cycbuff, just remove it entirely from
cycbuff.conf. Then all of the articles will appear to have been
deleted to INN, and the next nightly expire run will clean up any
remaining references to them.
Adding a new cycbuff just requires creating it (see below), adding a
cycbuff line, adding it to a metacycbuff, and then restarting innd.
where <size> is the size from the cycbuff line in cycbuff.conf.
INSTALL contains a script that will generate these commands for you
from your cycbuff.conf file.
This is the simplest method, but has the disadvantage that very large
files on regular file systems can be fairly slow to access, particularly
at the end of the file, and INN incurs unnecessary file system overhead
when accessing the cycbuff.
Partition the disk to make each partition equal to or smaller than 2
It's not recommended to use the block device files in /dev, since the
news system doesn't have permission to write to them and changing the
permissions of the system device files may affect something else.
Instead, use mknod(1) to create a new set of block devices (in somewhere
like pathspool/cycbuffs that's only writable by the news user). To do
this, run "ls -Ll" on the devices in /dev that correspond to the block
devices that you want to use. The major and minor device numbers are in
the fifth and sixth columns (right before the date), respectively. Then
run mknod like:
where <file> is the path to the device to create (matching the <file> part
of the cycbuff line) and <major> and <minor> are the major and minor
device numbers as discovered above.
Here's a short script to do this when given the path to the system device
file as an argument:
Make sure that the created files are owned by the news user and news
group, as specified at configure time (the default being "news" for
both). Also make sure that the permissions on the devices allow the news
user to read and write, and if you want other users on the system to be
able to use sm to retrieve articles, make sure they're world-readable.
Once you have everything configured properly and you start innd, you
should see messages in news.notice that look like:
where "ONE" will be whatever you called your cycbuff.
$Id: cycbuff.conf.pod 7859 2008-06-07 12:44:17Z iulius $
cycbuffupdate:<interval>
refreshinterval:<interval>
cycbuff:<name>:<file>:<size>
metacycbuff:<name>:<buffer>[,<buffer>,...][:<mode>]
CREATING CYCBUFFS
When creating a new cycbuff, there are two different methods for creating
the buffers in which the articles will be stored.
dd if=/dev/zero of=/path/to/cycbuff bs=1024 count=<size>
mknod <file> b <major> <minor>
#!/bin/sh
base=`echo "$1" | sed 's%.*/%%'`
major=`ls -Ll "$1" | awk '{print $5}' | tr -d ,`
minor=`ls -Ll "$1" | awk '{print $6}`
mkdir -p <pathspool in inn.conf>/cycbuffs
mknod <pathspool>/cycbuffs/"$base" b "$major" "$minor"
chown news:news <pathspool>/cycbuffs/"$base"
chmod 644 <pathspool>/cycbuffs/"$base"
innd: CNFS-sm No magic cookie found for cycbuff ONE, initializing
HISTORY
Written by Katsuhiro Kondou <kondou [at] nec.co.jp> for InterNetNews.
Rewritten into POD by Russ Allbery <rra [at] stanford.edu>.