Ephemeral local storage

    In addition to persistent storage, pods and containers may require ephemeral or transient local storage for their operation. The lifetime of this ephemeral storage does not extend beyond the life of the individual pod, and this ephemeral storage cannot be shared across pods.

    Prior to OKD 3.10, ephemeral local storage was exposed to pods using the container’s writable layer, logs directory, and EmptyDir volumes. Pods use ephemeral local storage for scratch space, caching, and logs. Issues related to the lack of local storage accounting and isolation include the following:

    • Pods do not know how much local storage is available to them.

    • Pods can be evicted due to other pods filling the local storage, after which new pods are not admitted until sufficient storage has been reclaimed.

    Unlike persistent volumes, ephemeral storage is unstructured and shared, the space, not the actual data, between all pods running on a node, in addition to other uses by the system, the container runtime, and OKD. The ephemeral storage framework allows pods to specify their transient local storage needs, and OKD to schedule pods where appropriate and protect the node against excessive use of local storage.

    While the ephemeral storage framework allows administrators and developers to better manage this local storage, it does not provide any promises related to I/O throughput and latency.

    Ephemeral local storage is always made available in the primary partition. There are two basic ways of creating the primary partition, root and runtime.

    Runtime

    This is an optional partition that runtimes can use for overlay file systems. OKD attempts to identify and provide shared access along with isolation to this partition. Container image layers and writable layers are stored here. If the runtime partition exists, the root partition does not hold any image layer or other writable storage.

    When you use DeviceMapper to provide runtime storage, a containers’ copy-on-write layer is not accounted for in ephemeral storage management. Use overlay storage to monitor this ephemeral storage.

    Cluster administrators can manage ephemeral storage within a project by that define the limit ranges and number of requests for ephemeral storage across all Pods in a non-terminal state. Developers can also set requests and limits on this compute resource at the Pod and Container level.

    You can use /bin/df as a tool to monitor ephemeral storage usage on the volume where ephemeral container data is located, which is and /var/lib/docker. The available space for only /var/lib/origin is shown when you use the df command if is placed on a separate disk by the cluster administrator.

    The output shows the ephemeral storage usage in /var/lib: