# rpk cluster quotas import

> 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 cluster quotas import
latest-redpanda-tag: v25.3.11
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: "false"
page-eol-date: November 19, 2026
latest-connect-version: 4.93.0
docname: rpk/rpk-cluster/rpk-cluster-quotas-import
page-component-name: streaming
page-version: "25.3"
page-component-version: "25.3"
page-component-title: Streaming
page-relative-src-path: rpk/rpk-cluster/rpk-cluster-quotas-import.adoc
page-edit-url: https://github.com/redpanda-data/docs/edit/v/25.3/modules/reference/pages/rpk/rpk-cluster/rpk-cluster-quotas-import.adoc
page-git-created-date: "2024-07-31"
page-git-modified-date: "2025-08-19"
support-status: supported
---

<!-- Source: https://docs.redpanda.com/streaming/25.3/reference/rpk/rpk-cluster/rpk-cluster-quotas-import.md -->

Use this command to import client quotas in the format produced by `rpk cluster quotas describe --format json/yaml`.

The schema of the import string matches the schema from `rpk cluster quotas describe --format help`:

#### YAML

```yaml
quotas:
  - entity:
      - name: string
      - type: string
    values:
      - key: string
      - values: string
```

#### JSON

```yaml
{
  "quotas": [
    {
      "entity": [
        {
          "name": "string",
          "type": "string"
        }
      ],
      "values": [
        {
          "key": "string",
          "values": "string"
        }
      ]
    }
  ]
}
```

Use the `--no-confirm` flag to avoid the confirmation prompt.

## [](#usage)Usage

```bash
rpk cluster quotas import [flags]
```

## [](#flags)Flags

| Value | Type | Description |
| --- | --- | --- |
| --from | string | Either the quotas or a path to a file containing the quotas to import; check help text for more information. |
| -h, --help | - | Help for import. |
| --no-confirm | - | Disable confirmation prompt. |
| --config | string | Redpanda or rpk config file; default search paths are ~/.config/rpk/rpk.yaml, $PWD, 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. |

## [](#examples)Examples

Import client quotas from a file:

```bash
rpk cluster quotas import --from /path/to/file
```

Import client quotas from a string:

```bash
rpk cluster quotas import --from '{"quotas":...}'
```

Import client quotas from a JSON string:

```bash
rpk cluster quotas import --from '
{
  "quotas": [
    {
      "entity": [
        {
          "name": "retrievals-",
          "type": "client-id-prefix"
        }
      ],
      "values": [
        {
          "key": "consumer_byte_rate",
          "value": "140000"
        }
      ]
    },
    {
      "entity": [
        {
          "name": "consumer-1",
          "type": "client-id"
        }
      ],
      "values": [
        {
          "key": "producer_byte_rate",
          "value": "140000"
        }
      ]
    }
  ]
}
'
```

Import client quotas from a YAML string:

```bash
rpk cluster quotas import --from '
quotas:
    - entity:
        - name: retrievals-
          type: client-id-prefix
      values:
        - key: consumer_byte_rate
          value: "140000"
    - entity:
        - name: consumer-1
          type: client-id
      values:
        - key: producer_byte_rate
          value: "140000"
'
```