Skip to content

Commit

Permalink
Merge pull request #2724 from redpanda-data/mihaitodor-fix-wasm-proce…
Browse files Browse the repository at this point in the history
…ssor-docs

Fix wasm processor docs
  • Loading branch information
Jeffail authored Jul 22, 2024
2 parents 96f6b39 + 690084a commit 478a7c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/modules/components/pages/processors/wasm.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ wasm:
This processor uses https://github.com/tetratelabs/wazero[Wazero^] to execute a WASM module (with support for WASI), calling a specific function for each message being processed. From within the WASM module it is possible to query and mutate the message being processed via a suite of functions exported to the module.
This ecosystem is delicate as WASM doesn't have a single clearly defined way to pass strings back and forth between the host and the module. In order to remedy this we're gradually working on introducing libraries and examples for multiple languages which can be found in https://github.com/{project-github}/tree/main/public/wasm/README.md[the codebase^].
This ecosystem is delicate as WASM doesn't have a single clearly defined way to pass strings back and forth between the host and the module. In order to remedy this we're gradually working on introducing libraries and examples for multiple languages which can be found in https://github.com/redpanda-data/benthos/tree/main/public/wasm/README.md[the codebase^].
These examples, as well as the processor itself, is a work in progress.
Expand Down
2 changes: 1 addition & 1 deletion internal/impl/wasm/processor_wazero.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func wazeroAllocProcessorConfig() *service.ConfigSpec {
Description(`
This processor uses https://github.com/tetratelabs/wazero[Wazero^] to execute a WASM module (with support for WASI), calling a specific function for each message being processed. From within the WASM module it is possible to query and mutate the message being processed via a suite of functions exported to the module.
This ecosystem is delicate as WASM doesn't have a single clearly defined way to pass strings back and forth between the host and the module. In order to remedy this we're gradually working on introducing libraries and examples for multiple languages which can be found in https://github.com/{project-github}/tree/main/public/wasm/README.md[the codebase^].
This ecosystem is delicate as WASM doesn't have a single clearly defined way to pass strings back and forth between the host and the module. In order to remedy this we're gradually working on introducing libraries and examples for multiple languages which can be found in https://github.com/redpanda-data/benthos/tree/main/public/wasm/README.md[the codebase^].
These examples, as well as the processor itself, is a work in progress.
Expand Down

0 comments on commit 478a7c0

Please sign in to comment.