-
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: Avoid the use of SinkExt in src/topology/builder.rs #11188
Conversation
I'm starting to experiment with the removal of `Sink` implementation for `Fanout` for #10144. My in-flight work is starting to sprawl uncomfortably so this is a small patch to remove reliance on one of the related `Sink` traits. Signed-off-by: Brian L. Troutwine <brian@troutwine.us>
✔️ Deploy Preview for vector-project ready! 🔨 Explore the source changes: f5d1d24 🔍 Inspect the deploy log: https://app.netlify.com/sites/vector-project/deploys/61fc8ea9aa7b64000884d537 😎 Browse the preview: https://deploy-preview-11188--vector-project.netlify.app |
Soak Test ResultsBaseline: f1400d9 ExplanationA soak test is an integrated performance test for vector in a repeatable rig, with varying configuration for vector. What follows is a statistical summary of a brief vector run for each configuration across SHAs given above. The goal of these tests are to determine, quickly, if vector performance is changed and to what degree by a pull request. Where appropriate units are scaled per-core. The table below, if present, lists those experiments that have experienced a statistically significant change in their throughput performance between baseline and comparision SHAs, with 90.0% confidence OR have been detected as newly erratic. Negative values mean that baseline is faster, positive comparison. Results that do not exhibit more than a ±8.87% change in mean throughput are discarded. An experiment is erratic if its coefficient of variation is greater than 0.3. The abbreviated table will be omitted if no interesting changes are observed. No interesting changes with confidence ≥ 90.00%: Fine details of change detection per experiment.
Fine details of each soak run.
|
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.
To be honest, it's not clear to me how the combinators can still be used without the extension trait? But whatever, it's an exceedingly innocuous change and if the tests pass, then who cares. :P
What remains is implemented on |
I'm starting to experiment with the removal of `Sink` implementation for `Fanout` for #10144. My in-flight work is starting to sprawl uncomfortably so this is a small patch to remove reliance on one of the related `Sink` traits. Signed-off-by: Brian L. Troutwine <brian@troutwine.us>
I'm starting to experiment with the removal of
Sink
implementation forFanout
for #10144. My in-flight work is starting to sprawl uncomfortably sothis is a small patch to remove reliance on one of the related
Sink
traits.Signed-off-by: Brian L. Troutwine brian@troutwine.us