-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
chore: Speed up LogEvent::rename_key
by 57%
#9226
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
use criterion::{ | ||
criterion_group, measurement::WallTime, BatchSize, BenchmarkGroup, Criterion, SamplingMode, | ||
}; | ||
use std::time::Duration; | ||
use vector_core::event::LogEvent; | ||
|
||
fn rename_key_flat(c: &mut Criterion) { | ||
let mut group: BenchmarkGroup<WallTime> = | ||
c.benchmark_group("vector_core::event::log_event::LogEvent::rename_key_flat"); | ||
group.sampling_mode(SamplingMode::Auto); | ||
|
||
group.bench_function("rename_flat_key (key is present)", move |b| { | ||
b.iter_batched( | ||
|| { | ||
let mut log_event = LogEvent::default(); | ||
log_event.insert("one", 1); | ||
log_event.insert("two", 2); | ||
log_event.insert("three", 3); | ||
log_event | ||
}, | ||
|mut log_event| { | ||
log_event.rename_key_flat("one", "1"); | ||
}, | ||
BatchSize::SmallInput, | ||
) | ||
}); | ||
|
||
group.bench_function("rename_flat_key (key is NOT present)", move |b| { | ||
b.iter_batched( | ||
|| { | ||
let mut log_event = LogEvent::default(); | ||
log_event.insert("one", 1); | ||
log_event.insert("two", 2); | ||
log_event.insert("three", 3); | ||
log_event | ||
}, | ||
|mut log_event| { | ||
log_event.rename_key_flat("four", "4"); | ||
}, | ||
BatchSize::SmallInput, | ||
) | ||
}); | ||
} | ||
|
||
criterion_group!( | ||
name = benches; | ||
config = Criterion::default() | ||
.warm_up_time(Duration::from_secs(5)) | ||
.measurement_time(Duration::from_secs(120)) | ||
// degree of noise to ignore in measurements, here 1% | ||
.noise_threshold(0.01) | ||
// likelihood of noise registering as difference, here 5% | ||
.significance_level(0.05) | ||
// likelihood of capturing the true runtime, here 95% | ||
.confidence_level(0.95) | ||
// total number of bootstrap resamples, higher is less noisy but slower | ||
.nresamples(100_000) | ||
// total samples to collect within the set measurement time | ||
.sample_size(150); | ||
targets = rename_key_flat | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
use criterion::criterion_main; | ||
|
||
mod log_event; | ||
|
||
criterion_main!(log_event::benches); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we update the tests below to catch this in the future? Presumably
self.remove()
was not right since it would have interpreted the key as a path.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the long-term I'd prefer to see the
_flat
functions disappear. Right now we avoid them to get a performance boost while the two lookup situations are in play. I do see your point about checking that we don't interpret the path, though. I'd like to gate that work on #9131 since it'll be a natural consequence of doing that work well.