4 releases (breaking)

0.4.0 Oct 10, 2024
0.3.0 Sep 19, 2024
0.2.0 Jul 3, 2024
0.1.0 May 7, 2024

#388 in Network programming

Download history 511/week @ 2024-07-14 356/week @ 2024-07-21 387/week @ 2024-07-28 373/week @ 2024-08-04 572/week @ 2024-08-11 614/week @ 2024-08-18 441/week @ 2024-08-25 530/week @ 2024-09-01 422/week @ 2024-09-08 592/week @ 2024-09-15 727/week @ 2024-09-22 292/week @ 2024-09-29 706/week @ 2024-10-06 861/week @ 2024-10-13 559/week @ 2024-10-20 538/week @ 2024-10-27

2,673 downloads per month

Apache-2.0

125KB
2.5K SLoC

Java 1.5K SLoC // 0.2% comments Python 792 SLoC // 0.2% comments Rust 158 SLoC // 0.2% comments

Remote UDF based on Arrow Flight

Crate Docs

Run user-defined functions in a separate process and call them via Arrow Flight RPC.

Server

Currently the following languages are supported:

Please click the link to see the specific usage.

Client

Add the following lines to your Cargo.toml:

[dependencies]
arrow-udf-flight = "0.2"
use arrow_udf_flight::Client;

// Connect to the UDF server
let client = Client::new("localhost:8815").await.unwrap();

// Call functions
let input: RecordBatch = ...;
let output: RecordBatch = client.call("gcd", &input).await.unwrap();

Communication Protocol

The communication protocol between client and server is based on Arrow Flight RPC.

Details to be added.

Dependencies

~15–22MB
~306K SLoC