Skip to content

DAOS in Docker

This section describes how to build and deploy Docker images allowing to simulate a small cluster using DAOS as backend storage. This small cluster is composed of the following three nodes:

  • The daos-server node running a DAOS server daemon managing data storage devices such as SCM or NVMe disks.
  • The daos-admin node allowing to manage the DAOS server thanks to dmgcommand.
  • The daos-client node using the the DAOS server to store data.

At this time only emulated hardware storage are supported by this Docker platform:

  • SCM (i.e. Storage Class Memory) are emulated with standard RAM memory.
  • NVMe disks are emulated with a file device.

Warning

Virtual Docker network such as bridge are not yet well supported by DAOS. Thus, one physical network interface (i.e. loopback interface is also not well supported) of the host should be chosen for being used by the containers through the Docker host network.

Prerequisites

To build and deploy the Docker images, docker cli shall be available. The docker host should have access to the Docker Hub and Rocky Linux official repositories. Finally, hugepages linux kernel feature shall be enabled on the docker host. At least, 4096 pages of 2048kB should be available. The number of huge pages allocated could be checked with the following command:

$ sysctl vm.nr_hugepages

The default size of a huge page, the number of available huge pages, etc. could be found with the following command:

$ cat /proc/meminfo | grep -e "^Huge"

The platform was tested and validated with the following dependencies: - Docker CE latest RPMs - DAOS 2.2 official RPMS - rockylinux/rockylinux:8.6 official docker images.

Configuring HugePages

First the Linux kernel needs to be built with the CONFIG_HUGETLBFS (present under "File systems") and CONFIG_HUGETLB_PAGE (selected automatically when CONFIG_HUGETLBFS is selected) configuration options.

To avoid memory fragmentation, huge pages could be allocated on the kernel boot command line by specifying the "hugepages=N" parameter, where 'N' = the number of huge pages requested. It is also possible to allocate them at run time, thanks to the sysctl command:

$ sysctl vm.nr_hugepages=8192

It is also possible to use the sysctl command to allocate huge pages at boot time with the following command:

$ cat <<< "vm.nr_hugepages = 8192" > /etc/sysctl.d/50-hugepages.conf
$ sysctl -p

Building Docker Images

Base DAOS Image

The first image to create is the daos-base image which is not intetended to be used as it, but as a base image for building the other three daos images. This first image could be built directly from GitHub with the following command:

$ docker build --tag daos-base:rocky8.6 \
    https://github.com/daos-stack/daos.git#release/2.2:utils/docker/vcluster/daos-base/el8

This Docker file accept the following arguments:

  • RHEL_BASE_IMAGE: Base docker image to use (default "rockylinux/rockylinux")
  • RHEL_BASE_VERSION: Version of the base docker image to use (default "8.6")
  • BUST_CACHE: Manage docker building cache (default ""). To invalidate the cache, a random value such as the date of the day shall be given.
  • DAOS_AUTH: Enable DAOS authentication when set to "yes" (default "yes")
  • DAOS_REPOS: Space separated list of repos needed to install DAOS (default "https://packages.daos.io/v2.2/EL8/packages/x86_64/")
  • DAOS_GPG_KEYS: Space separated list of GPG keys associated with DAOS repos (default "https://packages.daos.io/RPM-GPG-KEY")
  • DAOS_REPOS_NOAUTH: Space separated list of repos to use without GPG authentication (default "")

For example, building a DAOS base image, with authentication disabled, could be done with the following command:

$ docker build --tag daos-base:rocky8.6 --build-arg DAOS_AUTH=no \
    https://github.com/daos-stack/daos.git#release/2.2:utils/docker/vcluster/daos-base/el8

It is also possible to build the daos-base image from a local tree with the following command:

$ docker build --tag daos-base:rocky8.6 utils/docker/vcluster/daos-base/el8

From a local tree, a more straightforward way to build these images could be done with docker compose:

$ docker compose --file utils/docker/vcluster/docker-compose.yml build daos_base

The same arguments are accepted but they have to be defined in the Docker Compose environment file utils/docker/vcluster/.env.

DAOS Nodes Images

The three images daos-server, daos-admin and daos-client could be built directly from GitHub or from a local tree in the same way as for the daos-base image. Following command could be used to build directly the three images from GitHub:

$ for image in daos-server daos-admin daos-client ; do \
    docker build --tag "$image:rocky8.6" \
        "https://github.com/daos-stack/daos.git#release/2.2:utils/docker/vcluster/$image/el8"; \
  done

The Docker file of the daos-server image accept the following arguments:

  • DAOS_BASE_IMAGE: Base docker image to use (default "daos-base")
  • DAOS_BASE_VERSION: Version of the base docker image to use (default "rocky8.6")
  • DAOS_AUTH: Enable DAOS authentication when set to "yes" (default "yes")
  • DAOS_HUGEPAGES_NBR: Number of huge pages to allocate for SPDK (default 4096)
  • DAOS_SCM_SIZE: Size in GB of the RAM emulating SCM devices (default 4)
  • DAOS_BDEV_SIZE: Size in GB of the file created to emulate NVMe devices (default 16)
  • DAOS_IFACE_NAME: Fabric network interface used by the DAOS engine (default "eth0")

Note

The IP address of the network interface referenced by the DAOS_IFACE_NAME argument will be required when starting DAOS.

The Dockerfile of the daos-client and daos-admin images accept the following arguments:

  • DAOS_BASE_IMAGE: Base docker image to use (default "daos-base")
  • DAOS_BASE_VERSION: Version of the base docker image to use (default "rocky8.6")
  • DAOS_AUTH: Enable DAOS authentication when set to "yes" (default "yes")
  • DAOS_ADMIN_USER: Name or uid of the daos administrattor user (default "root")
  • DAOS_ADMIN_GROUP: Name or gid of the daos administrattor group (default "root")

Warning

For working properly, the DAOS authentication have to be enabled in all the images (i.e. nodes images and base image).

The Dockerfile of the daos-client image accept the following arguments:

  • DAOS_AGENT_IFACE_CFG: Enable manual configuration of the interface to use by the agent (default "yes")
  • DAOS_AGENT_IFACE_NUMA_NODE: Numa node of the interface to use by the agent (default "0"). Defining this variable is mandatory when DAOS_AGENT_IFACE_CFG is equal to "yes".
  • DAOS_AGENT_IFACE_NAME: Name of the interface to use by the agent (default "eth0"). Defining this variable is mandatory when DAOS_IFACE_CFG is equal to "yes".
  • DAOS_AGENT_IFACE_DOMAIN_NAME: Domain name of the interface to use by the agent (default "eth0"). Defining this variable is mandatory when DAOS_IFACE_CFG is equal to "yes".

Warning

On most of the system theDAOS_IFACE_CFG should be enabled: The DAOS Network Interface auto-detection could not yet be properly done inside a DAOS Agent Docker container.

From a local tree, a more straightforward way to build these images could be done with docker compose:

$ docker compose --file utils/docker/vcluster/docker-compose.yml build daos_server daos_admin daos_client

The same arguments are accepted but they have to be defined in the Docker Compose environment file utils/docker/vcluster/.env.

Warning

For working properly, the DAOS authentication have to be enabled in all the images (i.e. nodes images and base image).

Running the DAOS Containers

Via Docker Commands

Once the images are created, the containers could be directly started with docker with the following commands:

$ export DAOS_IFACE_IP=x.x.x.x
$ docker run --detach --privileged --name=daos-server --hostname=daos-server \
    --add-host "daos-server:$DAOS_IFACE_IP" --add-host "daos-admin:$DAOS_IFACE_IP" \
    --add-host "daos-client:$DAOS_IFACE_IP" --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro \
    --volume=/dev/hugepages:/dev/hugepages  --tmpfs=/run --network=host \
    daos-server:rocky8.6
$ docker run --detach --privileged --name=daos-agent --hostname=daos-agent \
    --add-host "daos-server:$DAOS_IFACE_IP" --add-host "daos-admin:$DAOS_IFACE_IP" \
    --add-host "daos-client:$DAOS_IFACE_IP" --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro \
    --tmpfs=/run --network=host daos-agent:rocky8.6
$ docker run --detach --privileged --name=daos-client --hostname=daos-client \
    --add-host "daos-server:$DAOS_IFACE_IP" --add-host "daos-admin:$DAOS_IFACE_IP" \
    --add-host "daos-client:$DAOS_IFACE_IP" --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro \
    --tmpfs=/run --network=host daos-client:rocky8.6

The value of the DAOS_IFACE_IP shall be replaced with the one of the network interface which was provided when the images have been built.

Once started, the DAOS server waits for the administrator to format the system. This can be done using the following command:

$ docker exec daos-admin dmg -i storage format

Upon successful completion of the format, the storage engine is started, and pools can be created using the daos admin tool. For more advanced configurations and usage refer to the section DAOS Tour.

Via Docker Compose

From a local tree, a more straightforward way to start the containers could be done with docker compose:

$ docker compose --file utils/docker/vcluster/docker-compose.yml up --detach

Note

Before starting the containers with docker compose, the IP address of the network interface, which was provided when the images have been built, shall be defined in the Docker Compose environment file utils/docker/vcluster/.env.

As with the docker command, the system shall be formatted, pools created, etc..

Via Custom Scripts

From a local tree, the bash script utils/docker/vcluster/daos-cm.sh could be used to start the containers and setup a simple DAOS system composed of the following elements:

  • 1 DAOS pool of 10GB (i.e. size of the pool is configurable)
  • 1 DAOS POSIX container mounted on /mnt/daos-posix-fs

This script could also be used to respectively stop and monitor the containers.

More details on the usage of daos-cm.sh command could be found with running the following command:

$ utils/docker/vcluster/daos-cm.sh --help
Back to top