This page describes how to provision, set up, and use disk caching on AlloyDB Omni to increase performance of your AlloyDB Omni installation.
In addition to the standard PostgreSQL in-memory shared buffers, AlloyDB Omni disk cache enables storing buffers on fast storage such as solid-state drives (SSDs). Disk caching accelerates data retrieval in AlloyDB Omni installations with data directories located on slower storage.
Like PostgreSQL shared buffers, AlloyDB Omni disk cache is non-persistent, which means cached data is lost on restart.
By default, AlloyDB Omni disk cache uses all storage reported by the file system. You can define the amount of storage reserved for caching data using the omni_disk_cache_file_size
parameter.
Enable the AlloyDB Omni disk cache
Follow these steps to enable the disk cache for AlloyDB Omni in a container.
Provision disks and create a file system
For AlloyDB Omni disk cache, you create a file system on a disk or multiple disks and mount it inside a container with AlloyDB Omni. Additionally, you can use utilities like mdadm
or lvm
to pool capacity together using multiple disks and use any file system.
The following steps demonstrate using lvm
and ext4
on a Ubuntu Compute Engine instance using NVMe SSDs.
Create a volume group from all available physical devices:
nvme_prefix="STORAGE_PREFIX" nvme_list=$(ls "$nvme_prefix"*) sudo vgcreate VOLUME_GROUP ${nvme_list}
Replace the following:
STORAGE_PREFIX
: the prefix of the target local disks path that are attached to a virtual machine using the nonvolatile memory express (NVMe) interface—for example, on Google Cloud, the NVMe device paths always start with/dev/nvme0n
.VOLUME_GROUP
: the name of a volume group where your SSDs are combined—for example,omni-disk-cache-volume
.
-
To create a logical volume from the free capacity of the volume group from the preceding step, use the following command:
sudo lvcreate -n LOGICAL_VOLUME -l 100%FREE VOLUME_GROUP
Replace
LOGICAL_VOLUME
with the name of a logical volume that is treated as a partition by the LVM—for example,omni_disk_cache_device
. - Create the
ext4
file system on the logical volume. If needed, you can specify otherext4
options subject to data safety.sudo mkfs.ext4 /dev/VOLUME_GROUP/LOGICAL_VOLUME
To create a directory that serves as a mount point on the host machine and mount the file system, use the following command:
sudo mkdir /OMNI_DISK_CACHE_DIRECTORY sudo mount /dev/VOLUME_GROUP/LOGICAL_VOLUME /OMNI_DISK_CACHE_DIRECTORY
Replace
OMNI_DISK_CACHE_DIRECTORY
with the name of the directory or a path to the directory serving as a mount point—for example,omni_disk_cache_directory
.
Mount the cache directory inside AlloyDB Omni
Before you enable disk cache for AlloyDB Omni running in a container, you must mount the cache directory inside AlloyDB Omni.
For information about installing AlloyDB Omni from a Docker image and customizing it, see Customize your AlloyDB Omni installation.
To mount the OMNI_DISK_CACHE_DIRECTORY
inside your Docker container running AlloyDB Omni, use the following command:
Docker
sudo docker run --name CONTAINER_NAME
-e POSTGRES_PASSWORD=PASSWORD
-e PGDATA=/var/lib/postgresql/data/pgdata
-v DATA_DIR:/var/lib/postgresql/data
-v /OMNI_DISK_CACHE_DIRECTORY:/CACHE_DIRECTORY_PATH_INSIDE_CONTAINER
-d google/alloydbomni
Replace the following:
CONTAINER_NAME
: the name to assign the new AlloyDB Omni container—for example,my-omni
.PASSWORD
: the password for your PostgreSQL database root administrator.DATA_DIR
: the file system path that you want AlloyDB Omni to use for its data directory.CACHE_DIRECTORY_PATH_INSIDE_CONTAINER
: the cache directory inside the AlloyDB Omni container that maps to the mount point on the host machine—for example, based on the value of the cache directory inside the container, either/omni_disk_cache_directory
, similar toOMNI_DISK_CACHE_DIRECTORY
, or/disk/cache/inside/container
.
Podman
podman run --name CONTAINER_NAME
-e POSTGRES_PASSWORD=PASSWORD
-e PGDATA=/var/lib/postgresql/data/pgdata
-v DATA_DIR:/var/lib/postgresql/data
-v /OMNI_DISK_CACHE_DIRECTORY:/CACHE_DIRECTORY_PATH_INSIDE_CONTAINER
-d docker.io/google/alloydbomni
Replace the following:
CONTAINER_NAME
: the name to assign the new AlloyDB Omni container—for example,my-omni
.PASSWORD
: the password for your PostgreSQL database root administrator.CACHE_DIRECTORY_PATH_INSIDE_CONTAINER
: the cache directory inside the AlloyDB Omni container that maps to the mount point on the host machine—for example, based on the value of the cache directory inside the container, either/omni_disk_cache_directory
, similar toOMNI_DISK_CACHE_DIRECTORY
, or/disk/cache/inside/container
.
To grant full access permissions to the mounted OMNI_DISK_CACHE_DIRECTORY
, run the following commands:
Docker
sudo docker exec -it CONTAINER_NAME chown postgres:postgres /CACHE_DIRECTORY_PATH_INSIDE_CONTAINER sudo docker exec -it CONTAINER_NAME chmod -R a+rw /CACHE_DIRECTORY_PATH_INSIDE_CONTAINER
Podman
sudo podman exec -it CONTAINER_NAME chown postgres:postgres /CACHE_DIRECTORY_PATH_INSIDE_CONTAINER sudo podman exec -it CONTAINER_NAME chmod -R a+rw /CACHE_DIRECTORY_PATH_INSIDE_CONTAINER
Enable the AlloyDB Omni disk cache
To enable the AlloyDB Omni disk cache for your database, set the appropriate Grand Unified Configuration (GUC) parameters after you make sure that the mounted cache directory is accessible from inside the Docker container.
-
Connect to the containerized AlloyDB Omni database as a superuser.
Docker
sudo docker exec -it CONTAINER_NAME psql -h localhost -U postgres
Podman
sudo podman exec -it CONTAINER_NAME psql -h localhost -U postgres
-
To set the value of the parameters, run the following commands inside the AlloyDB Omni database:
alter system set omni_disk_cache_enabled=on; alter system set omni_disk_cache_directory='/CACHE_DIRECTORY_PATH_INSIDE_CONTAINER';
-
By default, AlloyDB Omni uses all available space in the file system. You can override the default value using the
omni_disk_cache_file_size
parameter if needed.alter system set omni_disk_cache_file_size=SIZE_IN_MB;
-
For the caching configuration parameters change to take effect, restart your running container with AlloyDB Omni:
Docker
sudo docker restart CONTAINER_NAME
Podman
sudo podman restart CONTAINER_NAME
Verify the disk cache configuration
After you enable AlloyDB Omni disk cache, verify that the disk cache
is accessed by monitoring read and write activity to the disks using available
utilities like iotop
or iostat
.
Additionally, you can check if the AlloyDB Omni disk cache is open.
Follow these steps to verify the disk cache configuration for AlloyDB Omni in a container.
Docker
sudo docker logs CONTAINER_NAME 2>&1 | grep "opened omni disk cache"
Podman
sudo podman logs CONTAINER_NAME 2>&1 | grep "opened omni disk cache"
If your disk caching is configured correctly, you see the Successfully opened omni disk cache ...
message in the logs.