Skip to content

Commit

Permalink
Minor fixes to README
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas_Bianchessi committed Sep 16, 2024
1 parent 586c35f commit d77c65d
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit d77c65d

Please sign in to comment.