Skip to content

Commit 17628fe

Browse files
authored
Merge pull request #1719 from ydb-platform/round-robin
* Changed the gRPC DNS balancer policy to `round_robin` for internal `discovery/ListEndpoints` call (reverted v3.90.2 changes)
2 parents ab48839 + 61a51d7 commit 17628fe

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* Changed the gRPC DNS balancer policy to `round_robin` for internal `discovery/ListEndpoints` call (reverted v3.90.2 changes)
2+
13
## v3.105.0
24
* Supported topic split merge server feature for topic reader (no api changed)
35

internal/balancer/balancer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ func makeDiscoveryFunc(
200200
),
201201
grpc.WithBlock(), //nolint:staticcheck,nolintlint
202202
grpc.WithDefaultServiceConfig(`{
203-
"loadBalancingPolicy": "pick_first"
203+
"loadBalancingPolicy": "round_robin"
204204
}`),
205205
)...,
206206
)

0 commit comments

Comments
 (0)