Skip to main content

Use UDFs in Rust

This article provides a step-by-step guide for defining Rust functions in RisingWave.

Rust functions are compiled into WebAssembly modules and then run on the embedded WebAssembly virtual machine in RisingWave. Rust UDFs provide higher performance (near native) compared to Python and Java. The RisingWave kernel handles the management of Rust UDFs, eliminating the need for additional maintenance. However, for security reasons, Rust UDFs currently do not support access to external networks and are limited to computational tasks only, with restricted CPU and memory resources. Therefore, we recommend using Rust UDFs for computationally intensive tasks like packet parsing and format conversion.

Prerequisites

  • Ensure that you have Rust toolchain (stable channel) installed on your computer.

  • Ensure that the Rust standard library for wasm32-wasi target is installed:

    rustup target add wasm32-wasi

1. Create a project

Create a Rust project named udf:

cargo new --lib udf
cd udf

Add the following lines to Cargo.toml:

[lib]
crate-type = ["cdylib"]

[dependencies]
arrow-udf = "0.1"

2. Define your functions

In src/lib.rs, define your functions using the function macro:

use arrow_udf::function;

// define a scalar function
#[function("gcd(int, int) -> int")]
fn gcd(mut x: i32, mut y: i32) -> i32 {
while y != 0 {
(x, y) = (y, x % y);
}
x
}

// define a table function
#[function("series(int) -> setof int")]
fn series(n: i32) -> impl Iterator<Item = i32> {
0..n
}

You can find more usages in these functions and more examples in these tests.

Currently we only support a limited set of data types, timestamptz and complex array types are not supported yet. See the Data type mapping section for details.

3. Build the project

Build your functions into a WebAssembly module:

cargo build --release --target wasm32-wasi

You can find the generated WASM module at target/wasm32-wasi/release/udf.wasm.

Optional: It is recommended to strip the binary to reduce its size:

# Install wasm-tools
cargo install wasm-tools

# Strip the binary
wasm-tools strip ./target/wasm32-wasi/release/udf.wasm > udf.wasm

4. Declare your functions in RisingWave

In RisingWave, use the CREATE FUNCTION command to declare the functions you defined.

There are two ways to load the WASM module:

  1. Embed the WASM binary into SQL with base64 encoding. You can use the following command in psql:

    \set wasm_binary `base64 -i path/to/udf.wasm`
    CREATE FUNCTION gcd(int, int) RETURNS int LANGUAGE wasm USING BASE64 :'wasm_binary';
  2. Load the WASM binary from the local file system of the frontend. Note the fs:// is URI schema, and /path/to/udf.wasm is the real path.

    CREATE FUNCTION gcd(int, int) RETURNS int LANGUAGE wasm USING LINK 'fs:///path/to/udf.wasm';

5. Use your functions in RisingWave

Once the UDFs are created in RisingWave, you can use them in SQL queries just like any built-in functions. For example:

SELECT gcd(25, 15);
SELECT series(5);

Data type mapping

The following table shows the data type mapping between SQL and Rust:

SQL typeRust type as argumentRust type as return value
booleanboolbool
smallinti16i16
integeri32i32
biginti64i64
realf32f32
double precisionf64f64
decimalrust_decimal::Decimalrust_decimal::Decimal
datechrono::NaiveDatechrono::NaiveDate
timechrono::NaiveTimechrono::NaiveTime
timestampchrono::NaiveDateTimechrono::NaiveDateTime
timestamptznot supported yetnot supported yet
intervalarrow_udf::types::Intervalarrow_udf::types::Interval
jsonbserde_json::Valueserde_json::Value
varchar&strimpl AsRef<str>, e.g. String, Box<str>, &str
bytea&[u8]impl AsRef<[u8]>, e.g. Vec<u8>, Box<[u8]>, &[u8]
smallint[]&[i16]impl Iterator<Item = i16>
integer[]&[i32]impl Iterator<Item = i32>
bigint[]&[i64]impl Iterator<Item = i64>
real[]&[f32]impl Iterator<Item = f32>
double precision[]&[f64]impl Iterator<Item = f64>
varchar[]&arrow::array::StringArrayimpl Iterator<Item = &str>
bytea[]&arrow::array::BinaryArrayimpl Iterator<Item = &[u8]>
others[]not supported yetnot supported yet
struct<..>not supported yet(T1, T2, ..)

Help us make this doc better!

Was this page helpful?

Happy React is loading...