Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - docs: example of aggregation sm with initial value #3126

Closed
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions smartmodule/examples/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions smartmodule/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ members = [
"aggregate-sum",
"aggregate-json",
"aggregate-average",
"aggregate-init",
"filter",
"filter_init",
"filter_with_param",
Expand All @@ -29,3 +30,9 @@ fluvio-smartmodule = { path = "../../crates/fluvio-smartmodule" }
[profile.release]
lto = true
strip = "symbols"

[profile.release-lto]
inherits = "release"
lto = true
strip = "symbols"

14 changes: 14 additions & 0 deletions smartmodule/examples/aggregate-init/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "fluvio-wasm-aggregate-init"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's name more exact. Like sm-integer-sum-aggegrate.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

version = "0.0.0"
authors = ["Fluvio Contributors <team@fluvio.io>"]
edition = "2021"
publish = false

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

[dependencies]
fluvio-smartmodule = { workspace = true }
once_cell = { version = "1.17" }

14 changes: 14 additions & 0 deletions smartmodule/examples/aggregate-init/SmartModule.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "aggregate"
sehz marked this conversation as resolved.
Show resolved Hide resolved
group = "infinyon"
version = "0.1.0"
apiVersion = "0.1.0"
description = ""
license = "Apache-2.0"
visibility = "private"

[[params]]
name = "initial_value"
description = "initial value for aggregation"
optional = false

65 changes: 65 additions & 0 deletions smartmodule/examples/aggregate-init/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
use std::sync::atomic::{AtomicBool, Ordering};

use fluvio_smartmodule::{
dataplane::smartmodule::SmartModuleExtraParams, smartmodule, Record, RecordData, Result,
};

use once_cell::sync::OnceCell;

static INITIAL_VALUE: OnceCell<UseOnce<RecordData>> = OnceCell::new();

const PARAM_NAME: &str = "initial_value";

#[smartmodule(aggregate)]
pub fn aggregate(accumulator: RecordData, current: &Record) -> Result<RecordData> {
let accumulator = if let Some(initial_value) = INITIAL_VALUE.get() {
initial_value.get_or(&accumulator)
} else {
&accumulator
};
// Parse the accumulator and current record as strings
let accumulator_string = std::str::from_utf8(accumulator.as_ref())?;
let current_string = std::str::from_utf8(current.value.as_ref())?;

// Parse the strings into integers
let accumulator_int = accumulator_string.trim().parse::<i32>().unwrap_or(0);
let current_int = current_string.trim().parse::<i32>()?;

// Take the sum of the two integers and return it as a string
let sum = accumulator_int + current_int;
Ok(sum.to_string().into())
}

#[smartmodule(init)]
fn init(params: SmartModuleExtraParams) -> Result<()> {
if let Some(raw_spec) = params.get(PARAM_NAME) {
INITIAL_VALUE
.set(UseOnce::new(raw_spec.as_str().into()))
.expect("initial value is already initialized");
};
Ok(())
}

#[derive(Debug)]
struct UseOnce<T> {
value: T,
used: AtomicBool,
}

impl<T> UseOnce<T> {
fn new(value: T) -> Self {
Self {
value,
used: AtomicBool::new(false),
}
}

fn get_or<'a: 'b, 'b>(&'a self, default: &'b T) -> &'b T {
if self.used.load(Ordering::SeqCst) {
default
} else {
self.used.store(true, Ordering::SeqCst);
&self.value
}
}
}
5 changes: 5 additions & 0 deletions smartmodule/examples/aggregate-init/transforms.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
transforms:
- uses: infinyon/aggregate@0.1.0
with:
initial_value: "10"

sehz marked this conversation as resolved.
Show resolved Hide resolved