Develop
The WASM runtime is using WasmEdge, theoretically, you can use any languages which can be compiled to a WASM module to write your functions, below is an example using Rust:- cargo.toml
- src/lib.rs
Feature Matrix
The WASM runtime doesn’t support full features comparing to Java runtime, and it’s still in developing, below is the matrix:Input Arguments
Input | Java | Go(Pulsar) | Python | WASM |
---|---|---|---|---|
Custom SerDe | ✅ | ❌ | ✅ | ? |
Schema - Avro | ✅ | ❌ | ✅ | ? |
Schema - JSON | ✅ | ❌ | ✅ | ? |
Schema - Protobuf | ✅ | ❌ | ❌ | ? |
Schema - KeyValue | ✅ | ❌ | ❌ | ? |
Schema - AutoSchema | ✅ | ❌ | ❌ | ? |
Scehma - Protobuf Native | ✅ | ❌ | ❌ | ? |
e-2-e encryption | ✅ | ❌ | ✅ | ✅ |
maxMessageRetries | ✅ | ❌ | ❌ | ✅ |
dead-letter policy | ✅ | ❌ | ❌ | ✅ |
SubscriptionName | ✅ | ✅ | ✅ | ✅ |
SubscriptionType | ✅ | ✅ | ✅ | ✅ |
SubscriptionInitialPosition | ✅ | ❌ | ✅ | ✅ |
AutoAck | ✅ | ✅ | ✅ | ✅ |
Users can implement the Schema themselves since we are passing and expecting []byte to/from the users’ function, so leave ? here.
Output Arguments
Output | Java | Go(Pulsar) | Python | WASM |
---|---|---|---|---|
Custom SerDe | ✅ | ❌ | ✅ | ? |
Schema - Avro | ✅ | ❌ | ✅ | ? |
Schema - JSON | ✅ | ❌ | ✅ | ? |
Schema - Protobuf | ✅ | ❌ | ❌ | ? |
Schema - KeyValue | ✅ | ❌ | ❌ | ? |
Schema - AutoSchema | ✅ | ❌ | ❌ | ? |
Schema - Protobuf Native | ✅ | ❌ | ❌ | ? |
useThreadLocalProducers | ✅ | ❌ | ❌ | ✅ |
Key-based Batcher | ✅ | ✅ | ✅ | ✅ |
e-2-e encryption | ✅ | ❌ | ✅ | ✅ |
Compression | ✅ | ✅ | ✅ | ✅ |
Context
WASM runtime doesn’t support the Context features at all for now.Other
Other | Java | Go(Pulsar) | Python | WASM |
---|---|---|---|---|
Resources | ✅ | ✅ | ✅ | ✅ |
At-most-once | ✅ | ✅ | ✅ | ✅ |
At-least-once | ✅ | ✅ | ✅ | ✅ |
Effectively-once | ✅ | ❌ | ✅ | ❌ |
Package
You need to compile the function to a.wasm
module first before creating Pulsar Functions.
Deploy
After creating a cluster, set up your environment and develop&package your function, you can use thesnctl
, pulsarctl
, pulsar-admin
command, the REST API, or terraform
to deploy a Pulsar function to your cluster.
You can create a WASM Pulsar function by using a local .wasm
file or an uploaded Pulsar functions package(recommend).
(Optional) Upload your function file to Pulsar
It’s recommend to upload your function file to Pulsar before you create a function. Since you can add a version suffix to the package.Upload packagesYou should see the following output:
Create
Since Pulsar doesn’t support WASM runtime, we need to use
--py
to specify the function file and specify the --custom-runtime-options '{"genericKind": "wasm"}'
to make it work.What’s next?
- Learn how to manage functions.
- Learn how to monitor functions.
- Reference common configurations.