# rpk redpanda admin brokers decommission-status

> For the complete documentation index, see [llms.txt](https://docs.redpanda.com/llms.txt). Component-specific: [streaming-full.txt](https://docs.redpanda.com/streaming-full.txt)

---
title: rpk redpanda admin brokers decommission-status
latest-redpanda-tag: v25.1.1
latest-console-tag: v3.7.3
latest-operator-version: v26.1.4
# EOL = End-of-Life (support lifecycle status)
page-is-nearing-eol: "false"
page-is-past-eol: "true"
page-eol-date: April 7, 2026
latest-connect-version: 4.93.0
docname: rpk/rpk-redpanda/rpk-redpanda-admin-brokers-decommission-status
page-component-name: streaming
page-version: "25.1"
page-component-version: "25.1"
page-component-title: Streaming
page-relative-src-path: rpk/rpk-redpanda/rpk-redpanda-admin-brokers-decommission-status.adoc
page-edit-url: https://github.com/redpanda-data/docs/edit/v/25.1/modules/reference/pages/rpk/rpk-redpanda/rpk-redpanda-admin-brokers-decommission-status.adoc
page-git-created-date: "2023-08-04"
page-git-modified-date: "2025-07-29"
support-status: past end-of-life
---

<!-- Source: https://docs.redpanda.com/streaming/25.1/reference/rpk/rpk-redpanda/rpk-redpanda-admin-brokers-decommission-status.md -->

> ❗ **IMPORTANT**
>
> This command is not supported on macOS, Windows.

Show the progress of a broker decommissioning.

When a node is in the process of being decommissioned, this command reports the decommissioning progress as follows, where PARTITION-SIZE is in bytes. Using -H, it prints the partition size in a human-readable format.

```bash
$ rpk redpanda admin brokers decommission-status 4
DECOMMISSION PROGRESS
=====================
PARTITION                        MOVING-TO  COMPLETION-%  PARTITION-SIZE
kafka/test/0                     3          9             1699470920
kafka/test/4                     3          0             1614258779
kafka/test2/3                    3          3             2722706514
kafka/test2/4                    3          4             2945518089
kafka_internal/id_allocator/0    3          0             3562
```

Using --detailed / -d, it additionally prints granular reports.

```bash
$ rpk redpanda admin brokers decommission-status 4 -d
DECOMMISSION PROGRESS
=====================
PARTITION     MOVING-TO  COMPLETION-%  PARTITION-SIZE  BYTES-MOVED    BYTES-REMAINING
kafka/test/0  3          13            1731773243      228114727      1503658516
kafka/test/4  3          1             1645952961      18752660       1627200301
kafka/test2/3 3          5             2752632301      140975805      2611656496
kafka/test2/4 3          6             2975443783      181581219      2793862564
```

If a partition cannot be moved for some reason, the command reports the problematic partition in the 'REALLOCATION FAILURE DETAILS' or 'ALLOCATION FAILURES' section, and decommission fails. Typical scenarios for failure include:

-   Insufficient broker storage space to allocate a partition

-   Brokers that cannot satisfy rack constraints


```bash
REALLOCATION FAILURE DETAILS

============================

PARTITION    REASON

kafka/foo/1  Missing partition size information, all replicas may be offline

kafka/foo/7  Missing partition size information, all replicas may be offline
```

## [](#usage)Usage

```bash
rpk redpanda admin brokers decommission-status [BROKER ID] [flags]
```

## [](#flags)Flags

| Value | Type | Description |
| --- | --- | --- |
| -d, --detailed | - | Print how much data moved and remaining in bytes. |
| -H, --human-readable | - | Print the partition size in a human-readable form. |
| -h, --help | - | Help for decommission-status. |
| --config | string | Redpanda or rpk config file; default search paths are /var/lib/redpanda/.config/rpk/rpk.yaml, $PWD/redpanda.yaml, and /etc/redpanda/redpanda.yaml. |
| -X, --config-opt | stringArray | Override rpk configuration settings. See rpk -X or execute rpk -X help for inline detail or rpk -X list for terser detail. |
| --profile | string | Profile to use. See rpk profile for more details. |
| -v, --verbose | - | Enable verbose logging. |