Manage Disk Space
Redpanda provides several ways to manage disk space to ensure the production stability of the cluster. You can:
-
Configure message retention and a log cleanup policy.
-
Configure storage threshold properties, and set up alerts to notify you when free disk space reaches a certain threshold.
-
Use Continuous Data Balancing to automatically distribute partitions across nodes for more balanced disk usage.
-
Create a ballast file to act as a buffer against an out-of-disk outage.
If free disk space reaches a critically low level, Redpanda blocks clients from producing.
When a Redpanda node runs out of disk space, it terminates. This causes leader reassignment and then replication and rebalancing, impacting performance. If more nodes in the cluster fill up and terminate, traffic concentrates in fewer nodes, also impacting performance.
Configure message retention
Retention properties control how long messages are kept on disk before they’re deleted or compacted. Setting message retention properties is the best way to prevent old messages from accumulating on disk to the point that the disk becomes full.
You can configure retention properties to delete messages based on the following conditions:
-
Message age is exceeded.
-
Aggregate message size in the topic is exceeded.
-
Either message age or aggregate message size in the topic is exceeded.
Set retention properties at the topic level or the cluster level. If a value isn’t specified for the topic, then the topic uses the value for the cluster. Note that cluster-level property names use snake-case, while topic-level properties use dots.
Retention property |
Cluster level |
Topic level |
Time-based |
|
|
Size-based |
|
|
Segment size |
|
N/A |
Based on these properties, Redpanda runs a log cleanup process in the background. If you start to run out of disk space, adjust your retention properties to reduce the amount of disk space used.
Set time-based retention
A message is deleted if its age exceeds the value specified in delete_retention_ms
(the cluster-level property) or retention.ms
(the topic-level property). If retention.ms
is not set at the topic-level, the topic inherits the delete_retention_ms
setting.
To set retention time for a single topic, use retention.ms
, which overrides delete_retention_ms
.
-
retention.ms
- Topic-level property that specifies how long a message stays on disk before it’s deleted.To minimize the likelihood of out-of-disk outages, set
retention.ms
to86400000
. There is no default.To set
retention.ms
:rpk topic alter-config <topic> --set retention.ms=<retention_time>
-
delete_retention_ms
- Cluster-level property that specifies how long a message stays on disk before it’s deleted.To minimize the likelihood of out-of-disk outages, set
delete_retention_ms
to86400000
, which is one day. The default is604800000
, which is one week.
Do not set delete_retention_ms to -1 unless you’re using remote write with Tiered Storage to upload segments to remote storage. Setting it to -1 configures indefinite retention, which can fill disk space.
|
Set size-based retention
A message is deleted if the size of the partition in which it is contained reaches the value specified in
retention_bytes
or retention.bytes
. When a partition reaches that value, the oldest messages in the partition are deleted.
To set retention size for a single topic, use retention.bytes
, which overrides the cluster property retention_bytes
. If retention.bytes
is not set at the topic-level, the topic inherits the cluster-level setting.
-
retention.bytes
- Topic-level property that specifies the maximum size of a partition. There is no default.To set
retention.bytes
:rpk topic alter-config <topic> --set retention.bytes=<retention_size>
-
retention_bytes
- Cluster-level property that specifies the maximum size of a partition.Set this to a value that is lower than the disk capacity, or a fraction of the disk capacity based on the number of partitions per topic. For example, if you have one partition,
retention_bytes
can be 80% of the disk size. If you have 10 partitions, it can be 80% of the disk size divided by 10. The default isnull
, which means that retention based on topic size is disabled.To set
retention_bytes
:rpk cluster config set retention_bytes <retention_size>
Configure segment size
The log_segment_size
property specifies the size of each log segment.
To set log_segment_size
:
rpk cluster config set log_segment_size <segment_size>
If you know which topics will receive more data, it’s best to specify the size for each topic.
To configure log segment size on a topic:
rpk topic alter-config <topic> --set segment.bytes=<segment_size>
Keep in mind that very large segments prevent compaction, and very small segments increase the risk of encountering resource limits. To calculate an upper limit on segment size, divide the disk size by the number of partitions. For example, if you have a 128 GB disk and 1000 partitions, the upper limit of the segment size is 134217728
. Default is 1073741824
.
For details about how to modify cluster configuration properties, see Cluster configuration.
Handle full disks
If you exceed your low disk space threshold, Redpanda blocks clients from producing. In that state, Redpanda returns errors to external writers, but it still allows internal write traffic, such as replication and rebalancing.
The storage_min_free_bytes
configuration field determines the threshold of free space—the hard limit—for this write rejection.
You can also set a soft limit for a minimum free disk space alert. This soft limit generates an error message and affects the value of the redpanda_storage_disk_free_space_alert
metric. The alert works with the following configuration properties, which you can set on any data disk (one drive per node):
Property | Description |
---|---|
|
Minimum free disk space allowed, in bytes. |
|
Minimum free disk space allowed, in percentage of total available space for that drive. |
The alert threshold can be set in either bytes or percentage of total space. To disable one threshold in favor of the other, set it to zero. |
When a disk exceeds the set threshold, redpanda_storage_disk_free_space_alert
updates, and an error message is written to the Redpanda service log.
Monitor disk space
You can check your total disk size and free space by viewing the metrics:
-
redpanda_storage_disk_total_bytes
-
redpanda_storage_disk_free_bytes
Redpanda monitors disk space and updates these metrics and the storage_space_alert
status based on your full disk alert threshold. You can check the alert status with the redpanda_storage_disk_free_space_alert
metric. The alert values are:
-
0 = No alert
-
1 = Low free space alert
-
2 = Out of space (degraded, external writes are rejected)
Create a ballast file
A ballast file is an empty file that takes up disk space. If Redpanda runs out of disk space and becomes unavailable, you can delete the ballast file as a last resort. This clears up some space and gives you time to delete topics or records and change your retention properties.
To create a ballast file, set the following properties in the rpk section of the redpanda.yaml
file:
rpk:
tune_ballast_file: true
ballast_file_path: "/var/lib/redpanda/data/ballast"
ballast_file_size: "1GiB"
Run rpk
to create the ballast file:
rpk redpanda tune ballast_file
Property | Description |
---|---|
|
Set to |
|
You can change the location of the ballast file, but it must be on the same mount point as the Redpanda data directory. Default is |
|
Increase the ballast file size if it is a very high-throughput cluster. Decrease the ballast file size if you have very little storage space. The ballast file should be large enough to give you time to delete data and reconfigure retention properties if Redpanda crashes, but small enough that you don’t waste disk space. In general, set this to approximately 10 times the size of the largest segment, to have enough space to compact that topic. Default is |