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

Minor fixes to README #2

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Changes from all commits
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fn main() {

let result = env
// Open and read file line by line in parallel
.stream_file(&args[0])
.stream_file(&args[1])
// Split into words
.flat_map(|line| tokenize(&line))
// Partition
Expand Down Expand Up @@ -66,7 +66,7 @@ fn main() {
let env = StreamContext::new(config);

let result = env
.stream_file(&args[0])
.stream_file(&args[1])
// Adaptive batching(default) has predictable latency
// Fixed size batching often leads to shorter execution times
// If data is immediately available and latency is not critical
Expand All @@ -82,7 +82,7 @@ fn main() {
env.execute_blocking(); // Start execution (blocking)
if let Some(result) = result.get() {
// Print word counts
result.into_iter().for_each(|(word, count)| println!("{word}: {count}"));
result.into_iter().for_each(|(_, (word, count))| println!("{word}: {count}"));
}
}

Expand Down
Loading