4 Installing Eloquence on the Linux platform
# AllowSecondaryBlockingLock If set, secondary blocking
# locks are allowed. In previous Eloquence versions,
# secondary locks in a blocking mode (odd modes)
# failed with database status -135 ("Second lock is
# not allowed in modes 1,3,5,11,13 and 15.") instead
# of blocking. Current Eloquence versions return the
# status code -35 in case a deadlock situation caused
# by a secondary blocking lock is detected. Therefore,
# this setting is enabled by default. To retain the
# behavior of previous Eloquence versions it can be
# set to 0. The default value is 1.
#AllowSecondaryBlockingLock = 1
# BufferCache Size of page cache in megabytes. The page cache is
# used to reduce the number of disc accesses. Large
# cache size will speed up random database access,
# while a too small cache size may cause bad server
# performance.
# Default cache size is 5 MB.
#BufferCache = 5
# The server performs a checkpoint operation at fixed intervals.
# This flushes all modified buffers (including metadata) to the
# disk and resets the log of committed transactions. A checkpoint
# is a point where the server knows all data are in a consistent
# state. Any data modification since the last checkpoint is
# recorded in the log volume.
#
# CheckPtFreq Checkpoint frequency in seconds.
# Default checkpoint frequency is 60 seconds.
#
# CheckPtSize Checkpoint frequency based on accumulated log space
# which would be freed by a checkpoint (in megabytes).
# A zero CheckPtSize value disables size based
# checkpoints.
# Default checkpoint size is 10 megabytes.
#
# The database server performs a checkpoint operation at a fixed
# interval and optionally in addition when the accumulated log
# space which could be freed by a checkpoint operation reaches a
# given threshold.
# The frequency of the checkpoint operations has a great influence
# on the size of the log volume since the log volume must hold all
# committed transactions since between checkpoints
#CheckPtFreq = 60
#CheckPtSize = 10
# The syncer thread flushes modified buffer pages to the disk when
# they are likely to become reused in the near future.
#
# SyncerFreq Syncer thread invocation frequency (in seconds)
# Default interval is 5 seconds.
#SyncerFreq = 5
# SyncerJournalFlushInterval If SyncMode is enabled this
# configuration item specifies the interval (in
# milliseconds) at which the journal of committed
# transactions is synchronized to disk.
# In case of an operating system or hardware failure
# transactions that were not synchronized to disk are
# typically lost.
# A smaller value reduces the amount of transactions
# that might be lost in case of a system crash.
# However, setting this value too low significantly
# impacts write performance.
# Setting this value to 0 reverts to the legacy
# SyncMode behavior where every transaction is
# immediately synchronized.
# The default value is 500 milliseconds.
#SyncerJournalFlushInterval = 500
### Store/Restore Devices
[Devices]
# This section defines the "server devices" which can be used with
# dbstore and dbrestore. Each entry consists of the device name and
# an associated path.
#
# A "server device" could either be a single file, a directory or a
# device. When no server devices are configured, dbstore and
# dbrestore operation is refused by the server.
#
# The example below defines two server devices. The device "Tape"
# points to a tape device file, the device "Backup" points to a
# directory which is intended to hold the backup files.
#Tape = /dev/rmt/c1t0d0BEST
#Backup = /data/backup
### Forward log
[ForwardLog]
# FwLog Configures the file, device or pipe to be used for
# forward-logging. Using the %N token in the file name
# activates automatic file management (not possible
# for devices or pipes).
# By default, forward-logging is inactive.
#
# The examples below configure an automatically
# managed file and a pipe which compresses the data
# on-the-fly:
#FwLog = /mnt/disk2/data/db-forward-%N.log
#FwLog = |gzip -c >/mnt/disk2/data/db-forward.log.gz
# FwRecovery Configures the file, device or pipe to be used
# during forward recovery. If not set, the Log setting
# is used by default.
#
# The example below configures a pipe which
# uncompresses the data on-the-fly:
#FwRecovery = |gzip -dc /mnt/disk2/data/db-forward.log.gz
# FwOnFailure Configures the action to be taken in case the
# forward-log cannot be written, e.g. due to
# insufficient disk space.
# Possible values are disable or panic. If set to
# disable, forward-logging will be disabled on
# failure. As soon as the problem is solved it can be
# manually enabled using dbctl.
# If set to panic, the eloqdb6 server will issue a
# panic and abort itself.
# The default value is disable.
#FwOnFailure = disable
# FwMaxSize Limits the maximum size of automatically managed
# forward-log files (in megabytes). If not set or set
# to zero, the file size limit is 2 gigabytes. The
# default value is 0 (not set).
#FwMaxSize = 0
### Data base environment
[Volumes]
# List of data base volumes. Initially empty.
# This is usually filled in by dbvolcreate and dbvolextend
# utilities