-
Notifications
You must be signed in to change notification settings - Fork 52
Set the default balancer name to round_robin #36
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,11 @@ func createDefaultConfig() component.Config { | |
Compression: configcompression.Zstd, | ||
// We almost read 0 bytes, so no need to tune ReadBufferSize. | ||
WriteBufferSize: 512 * 1024, | ||
// The `configgrpc` default is pick_first, | ||
// which is not great for OTel Arrow exporters | ||
// because it concentrates load at a single | ||
// destination. | ||
BalancerName: "round_robin", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the actual change. When the empty string is passed for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
}, | ||
Arrow: ArrowSettings{ | ||
NumStreams: runtime.NumCPU(), | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# when nothing is set |
Uh oh!
There was an error while loading. Please reload this page.