Storage Backends
A Bareos Storage Daemon can use various storage backends:
- Tape
is used to access tape device and thus has sequential access.
- File
tells Bareos that the device is a file. It may either be a file defined on fixed medium or a removable filesystem such as USB. All files must be random access devices.
- Fifo
is a first-in-first-out sequential access read-only or write-only device.
- Droplet
is used to access an object store supported by libdroplet, most notably S3. For details, refer to Droplet Storage Backend.
- Dplcompat
replacement for Droplet with compatible storage format (i.e. you can switch from Droplet to Dplcompat and back), see Dplcompat Storage Backend.
- GFAPI (GlusterFS)
is used to access a GlusterFS storage.
- Dedupable
is used to support filesystem block-based deduplication, see Dedupable Backend.
Droplet Storage Backend
The bareos-storage-droplet backend (Version >= 17.2.7) can be used to access Object Storage through libdroplet. Droplet supports a number of backends, most notably S3. For details about Droplet itself see https://github.com/scality/Droplet.
Requirements
The Bareos package bareos-storage-droplet is not available on all platforms.
Droplet S3:
The droplet S3 backend can only be used with virtual-hosted-style buckets like http://bucket.s3_server/object. Path-style buckets are not supported. It has been tested successfully with AWS S3 and CEPH Object Gateway S3.
Installation
Install the package bareos-storage-droplet by using an appropriate package management tool (eg. dnf, zypper, apt).
Configuration
The droplet backend requires a Bareos Director Storage Resource, a Bareos Storage Daemon Device Resource as well as a Droplet profile file where your access–, secret–keys and other parameters for the connection to your object storage are stored.
AWS S3
Director
First, we will create the new Bareos Director Storage Resource.
For the following example, we
choose the name
S3_Object (Dir->Storage)
.choose
Media Type (Dir->Storage) = S3_Object1
. We name it this way, in case we later add more separated Object Storages that don’t have access to the same volumes.assume the Bareos Storage Daemon is located on the host bareos-sd.example.com and will offers the Device Resource
S3_ObjectStorage (Sd->Device)
(to be configured in the next section).
These credentials are only used to connect to the Bareos Storage Daemon. The credentials to access the object store (e.g. S3) are stored in the Bareos Storage Daemon Droplet Profile.
Storage Daemon
As of your Bareos Storage Daemon configuration, we need to setup a new device that acts as a link to Object Storage backend.
The name and media type must correspond to those settings in the Bareos Director Storage Resource:
Limitation: Droplet Backend does not support block interleaving
The current implementation has a known Bug that may lead to bogus data on your S3 volumes
when you set Maximum Concurrent Jobs (Sd->Device)
to a value other than 1.
Because of this the default for a backend of type Droplet is set to 1 and the Bareos Storage Daemon will
refuse to start if you set it to a value greater than 1.
A device for the usage of AWS S3 object storage with a bucket named backup-bareos
located in EU Central 1 (Frankfurt, Germany), would look like this:
In these examples all the backup data is placed in the bareos-backup
bucket on the defined S3 storage. In contrast to other Bareos Storage Daemon backends, a Bareos volume is not represented by a single file. Instead a volume is a sub-directory in the defined bucket and every chunk is placed in the volume directory with the filename 0000-9999 and a size defined in the chunksize option. It is implemented this way, as S3 does not allow to append to a file. Instead it always writes full
files, so every append operation could result in reading and writing the full volume file.
Following Device Options (Sd->Device)
settings are possible:
- profile
Droplet profile path (e.g. /etc/bareos/bareos-sd.d/device/droplet/droplet.profile). Make sure the profile file is readable for user bareos.
- acl
Canned ACL
- storageclass
Storage Class to use.
- bucket
Bucket to store objects in.
- chunksize
Size of Volume Chunks (default = 10 Mb). see below the limitation with Maximum Volume Size
- iothreads
Number of IO-threads to use for uploads (if not set, blocking uploads are used)
- ioslots
Number of IO-slots per IO-thread (0-255, default 10). Set this to values greater than 1 for cached and to 0 for direct writing.
- retries
Number of writing tries before discarding the data. Set this to 0 for unlimited retries. Setting anything != 0 here will cause dataloss if the backend is not available, so be very careful (0-255, default = 0, which means unlimited retries).
- mmap
Use mmap to allocate Chunk memory instead of malloc().
- location
Deprecated. If required (AWS only), it has to be set in the Droplet profile.
Create the Droplet profile to be used. This profile is used later by the droplet library when accessing your cloud storage.
An example for AWS S3 could look like this:
host = s3.amazonaws.com
use_https = true
access_key = myaccesskey
secret_key = mysecretkey
pricing_dir = ""
backend = s3
aws_auth_sign_version = 4
aws_region = eu-central-1
More arguments and the SSL parameters can be found in the documentation of the droplet library: externalReferenceDropletDocConfigurationFile
Limitation: Droplet doesn’t support comments into profile configuration file.
Keep the *.profile clean of any form of comments.
While parameters have been explained in the AWS S3 section, this gives an example about how to backup to a CEPH Object Gateway S3.
A device for CEPH object storage could look like this:
The corresponding Droplet profile looks like this:
host = CEPH-host.example.com
use_https = False
access_key = myaccesskey
secret_key = mysecretkey
pricing_dir = ""
backend = s3
aws_auth_sign_version = 2
Main differences are, that aws_region
is not required and aws_auth_sign_version = 2
instead of 4.
Limitation: Maximum of 9’999 chunks
You have to make sure that your Maximum Volume Bytes (Dir->Pool)
divided
by the chunk size doesn’t exceed 9’999.
Example: Maximum Volume Bytes = 300 GB, and chunk size = 100 MB -> 3’000 is ok.
Troubleshooting
iothreads
For testing following Device Options (Sd->Device)
should be used:
iothreads=0
retries=1
If the S3 backend is or becomes unreachable, the Bareos Storage Daemon will behave depending on iothreads and retries. When the Bareos Storage Daemon is using cached writing (iothreads >=1) and retries is set to zero (unlimited tries), the job will continue running until the backend becomes available again. The job cannot be canceled in this case, as the Bareos Storage Daemon will continuously try to write the cached files.
Great caution should be used when using retries>=0 combined with cached writing. If the backend becomes unavailable and the Bareos Storage Daemon reaches the predefined tries, the job will be discarded silently yet marked as OK
in the Bareos Director.
You can always check the status of the writing process by using status storage=…. The current writing status will be displayed then:
...
Device "S3_ObjectStorage" (S3) is mounted with:
Volume: Full-0085
Pool: Full
Media type: S3_Object1
Backend connection is working.
Inflight chunks: 2
Pending IO flush requests:
/Full-0085/0002 - 10485760 (try=0)
/Full-0085/0003 - 10485760 (try=0)
/Full-0085/0004 - 10485760 (try=0)
...
Attached Jobs: 175
...
Pending IO flush requests means that there is data to be written. try`=0 means that this is the first try and no problem has occurred. If :strong:`try >0, problems occurred and the storage daemon will continue trying.
Status without pending IO chunks:
...
Device "S3_ObjectStorage" (S3) is mounted with:
Volume: Full-0084
Pool: Full
Media type: S3_Object1
Backend connection is working.
No Pending IO flush requests.
Configured device capabilities:
EOF BSR BSF FSR FSF EOM !REM RACCESS AUTOMOUNT LABEL !ANONVOLS !ALWAYSOPEN
Device state:
OPENED !TAPE LABEL !MALLOC APPEND !READ EOT !WEOT !EOF !NEXTVOL !SHORT MOUNTED
num_writers=0 reserves=0 block=8
Attached Jobs:
...
For performance, Device Options (Sd->Device)
should be configured with:
iothreads >= 1
retries = 0
New AWS S3 Buckets
As AWS S3 buckets are accessed via virtual-hosted-style buckets (like http://bucket.s3_server/object) creating a new bucket results in a new DNS entry.
As a new DNS entry is not available immediately, Amazon solves this by using HTTP temporary redirects (code: 307) to redirect to the correct host. Unfortunately, the Droplet library does not support HTTP redirects.
Requesting the device status only returns an unspecific error:
*status storage=...
...
Backend connection is not working.
...
Workaround:
Wait until bucket is available a permanent hostname. This can take up to 24 hours.
Configure the AWS location into the profiles host entry. For the AWS location
eu-central-1
, changehost = s3.amazonaws.com
intohost = s3.eu-central-1.amazonaws.com
:... host = s3.eu-central-1.amazonaws.com aws_region = eu-central-1 ...
AWS S3 Logging
If you use AWS S3 object storage and want to debug your bareos setup, it is recommended to turn on the server access logging in your bucket properties. This will allow you to determine whether Bareos attempted to write to your bucket or not.
Dplcompat Storage Backend
The bareos-storage-dplcompat backend (Version >= 24.0.0) can be used to access Object Storage through external wrapper programs. The storage format of this backend is compatible with the Droplet backend. For information on bundled wrappers, see Bundled Wrapper Programs. To learn how to implement your own wrapper, see Dplcompat Wrapper Programs.
Installation
Install the package bareos-storage-dplcompat.
Configuration
The droplet backend requires a Bareos Director Storage Resource, a Bareos Storage Daemon
Device Resource as well as a wrapper script that facilitates access
to the object storage.
This wrapper script may need additional configuration options, that are passed
using Device Options (Sd->Device)
.
Storage Daemon
The following Device Options (Sd->Device)
settings configure
dplcompat itself:
- chunksize
Size of Volume Chunks in Bytes (default: 10 MB).
- iothreads
Number of IO-threads to use for uploads (if not set, blocking uploads are used)
- ioslots
Number of IO-slots per IO-thread (0-255, default 10). Set this to values greater than 1 for cached and to 0 for direct writing.
- retries
Number of writing tries before discarding the data (0-255, default: 0). Setting this to a value greater zero will cause data-loss if the backend is not available.
- program
The wrapper program to use. Either an absolute path or the name of a program in
Scripts Directory (Sd->Storage)
.- program_timeout
Timeout in seconds after which the wrapper program is presumed dead if it does not respond to I/O operations (default: 30).
Tip
The default values for chunksize, iothreads and ioslots were inherited from the Droplet backend. Due to the nature of Dplcompat, it benefits from large chunksizes, because that reduces the number of wrapper processes the plugin spawns.
Warning
The SD will allocate up to \(iothreads * ioslots * chunksize\) bytes of memory for the device. With larger chunksize settings, this escalates pretty quickly. Make sure your have enough memory or reduce the number of ioslots.
Example
We want to configure a device ObjectStore:
Upload up to four chunks of 256 MB in parallel.
Limit to at most 2 chunks per upload-thread.
Use the wrapper program
acme-wrapper
.Pass options
fruit
with valuebanana
andvegetable
with valuecarrot
to the wrapper program.
Note
For improved readability the Device Options (Sd->Device)
was
split into multiple lines.
This is still a single value containing a comma-separated list of key-value
pairs.
Director
To connect the director to the storage, a Storage Resource must be configured.
Example
Based on the example above, a matching Storage Resource would be
Bundled Wrapper Programs
The scripts in this section are bundled with Dplcompat.
s3cmd-wrapper.sh
This program wraps s3cmd
. It connects Dplcompat to S3 compatible storages.
Prerequisites
This wrapper program requires a properly configured s3cmd
.
You can install s3cmd
with your system’s package manager or using pip
with or without a venv
.
Configuring s3cmd
can be done interactively using s3cmd --configure
.
The resulting configuration file (usually $HOME/.s3cfg
) should be copied
into the Bareos configuration directory and its owner should be set to the user
that runs the Bareos Storage Daemon.
When running s3cmd
as the user that also runs the Bareos Storage Daemon and providing the
configuration file, you should be able to access your S3 bucket.
If the command s3cmd --config /etc/bareos/s3cmd.cfg info s3://your-bucket
returns successfully, the configuration should be fine.
The bucket must allow read/write access to the access key or token that is used,
of course.
Configuration
- s3cmd_prog
Configure the full path to the s3cmd program to use (default: autodetected)
- s3cfg
Full path to the s3cfg file to read the configuration from (required).
- bucket
Name of the S3 bucket to use (default: “backup”)
- base_url
Override the base URL used to generate the object URLs from. When this is set, the bucket option is ignored. (no default)
- storage_class
Defines the storage class of newly uploaded objects. When this is not set, the bucket’s policy applies.
Example
The following example configures a Device Resource as follows:
use
s3cmd-wrapper.sh
read
s3cmd
configuration from/etc/bareos/s3cmd.cfg
use the bucket named “bareos”
set the storage class to “ONEZONE_IA”
GFAPI Storage Backend
GFAPI (GlusterFS)
A GlusterFS Storage can be used as Storage backend of Bareos. Prerequisites are a working GlusterFS storage system and the package bareos-storage-glusterfs. See https://www.gluster.org/ for more information regarding GlusterFS installation and configuration and specifically https://docs.gluster.org/en/latest/Administrator-Guide/Bareos/ for Bareos integration. You can use following snippet to configure it as storage device:
Adapt server and volume name to your environment.
Version >= 15.2.0
Dedupable Backend
Dedupable
A dedupable device splits up the data it receives into bareos specific data and file data to store them separately. It tries to store the file data blocks it receives only at certain intervals in its storage. This should make it possible for your filesystem to deduplicate its the actual file data.
For this to work correctly, the device option BlockSize needs to be set to the block size
your filesystem uses to deduplicate. It is also important that Maximum Network Buffer Size (Fd->Client)
is
divisible by this size.
Version >= 23.1.0