11 unstable releases (4 breaking)

0.5.0 Feb 25, 2025
0.4.1 Dec 24, 2024
0.4.0 Oct 10, 2024
0.3.0 Sep 19, 2024
0.1.1 Jan 31, 2024

#200 in WebAssembly

Download history 744/week @ 2024-11-16 557/week @ 2024-11-23 431/week @ 2024-11-30 421/week @ 2024-12-07 399/week @ 2024-12-14 551/week @ 2024-12-21 425/week @ 2024-12-28 471/week @ 2025-01-04 437/week @ 2025-01-11 495/week @ 2025-01-18 303/week @ 2025-01-25 447/week @ 2025-02-01 560/week @ 2025-02-08 493/week @ 2025-02-15 728/week @ 2025-02-22 750/week @ 2025-03-01

2,623 downloads per month

Apache-2.0

40KB
717 lines

WebAssembly UDF for Apache Arrow

Crate Docs

For untrusted user-defined functions, you can compile them into WebAssembly and run them in a sandboxed environment.

Build UDF in WebAssembly

Create a project and add the following lines to your Cargo.toml:

[dependencies]
arrow-udf = "0.6"

Define your functions with the #[function] macro:

use arrow_udf::function;

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

Then compile the project into WebAssembly:

cargo build --release --target wasm32-wasip1

You can find the generated WebAssembly module in target/wasm32-wasip1/release/*.wasm.

Run UDF in WebAssembly

Add the following lines to your Cargo.toml:

[dependencies]
arrow-udf-wasm = "0.5"

You can then load the WebAssembly module and call the functions:

use arrow_udf_wasm::Runtime;
use arrow_schema::DataType;
use arrow_array::RecordBatch;

// load the WebAssembly module
let binary = std::fs::read("udf.wasm").unwrap();
// create a runtime from the module
let runtime = Runtime::new(&binary).unwrap();
// list available functions in the module:
for name in runtime.functions() {
    println!("{}", name);
}
// call the function with a RecordBatch
let func = runtime.find_function("gcd", vec![DataType::Int32, DataType::Int32], DataType::Int32).unwrap();
let input: RecordBatch = ...;
let output = runtime.call(func, &input).unwrap();

The WebAssembly runtime is powered by Wasmtime. Notice that each WebAssembly instance can only run single-threaded, we maintain an instance pool internally to support parallel calls from multiple threads.

See the example for more details. To run the example:

cargo build --release -p arrow-udf-example --target wasm32-wasip1
cargo run --example wasm -- target/wasm32-wasip1/release/arrow_udf_example.wasm

Build WASM UDF at Runtime

Enable the build feature to build the wasm binary from source:

[dependencies]
arrow-udf-wasm = { version = "0.5", features = ["build"] }

You can then build the WebAssembly module at runtime:

let manifest = r#"
[dependencies]
chrono = "0.4"
"#;

let script = r#"
use arrow_udf::function;

#[function("gcd(int, int) -> int")]
fn gcd(mut a: i32, mut b: i32) -> i32 {
    while b != 0 {
        (a, b) = (b, a % b);
    }
    a
}
"#;
let binary = arrow_udf_wasm::build::build(manifest, script).unwrap();

See the build module for more details.

Dependencies

~27–38MB
~633K SLoC