# rpk transform

> 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 transform
latest-redpanda-tag: v26.1.14
latest-console-tag: v3.9.0
latest-operator-version: v26.2.1
# EOL = End-of-Life (support lifecycle status)
page-is-nearing-eol: "false"
page-is-past-eol: "false"
page-eol-date: March 31, 2027
latest-connect-version: 4.104.0
docname: rpk/rpk-transform/rpk-transform
page-component-name: streaming
page-version: "26.1"
page-component-version: "26.1"
page-component-title: Streaming
page-relative-src-path: rpk/rpk-transform/rpk-transform.adoc
page-edit-url: https://github.com/redpanda-data/docs/edit/v/26.1/modules/reference/pages/rpk/rpk-transform/rpk-transform.adoc
description: Develop, build, deploy, and manage WebAssembly (Wasm) data transforms for Redpanda.
page-git-created-date: "2023-12-22"
page-git-modified-date: "2026-07-17"
support-status: supported
---

<!-- Source: https://docs.redpanda.com/streaming/26.1/reference/rpk/rpk-transform/rpk-transform.md -->

Develop, build, deploy, and manage WebAssembly (Wasm) data transforms for Redpanda.

## [](#usage)Usage

```bash
rpk transform [flags]
```

## [](#aliases)Aliases

```bash
rpk wasm
rpk transfrom
```

## [](#subcommands)Subcommands

| Command | Description |
| --- | --- |
| rpk transform build | Build a transform. This command looks in the current working directory for a transform.yaml file. |
| rpk transform delete | Delete a data transform. |
| rpk transform deploy | Deploy a transform. When run in the same directory as a transform.yaml, this reads the configuration file, then looks for a .wasm file with the same name as your project. |
| rpk transform init | Initialize a new data transform project. Creates a new directory with the required project files. |
| rpk transform list | List data transforms. This command lists all data transforms in a cluster, as well as showing the state of a individual transform processor, such as if it’s errored or how many records are pending to be processed (lag). |
| rpk transform logs | View logs for a data transform. Streams STDOUT and STDERR output captured during runtime to your terminal. |
| rpk transform pause | Pause a data transform. This command suspends execution of the specified transform without removing it from the system. |
| rpk transform resume | Resume a data transform. This command resumes execution of the specified data transform, if it was previously paused. |

## [](#global-flags)Global flags

| Value | Type | Description |
| --- | --- | --- |
| --config | string | Redpanda or rpk config file; default search paths are ~/.config/rpk/rpk.yaml, $PWD/redpanda.yaml, and /etc/redpanda/redpanda.yaml. |
| -X, --config-opt | stringArray | Override rpk configuration settings; -X help for detail or -X list for terser detail. |
| --ignore-profile | bool | Ignore rpk.yaml and redpanda.yaml; use default settings. |
| --profile | string | rpk profile to use. |
| -v, --verbose | bool | Enable verbose logging. |