We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e42c35 + 8e7f434 commit b66487fCopy full SHA for b66487f
CHANGELOG.md
@@ -1,4 +1,5 @@
1
* Added option to set preferred node id to execute query
2
+* Set the `pick_first` balancer for short-lived grpc connection inside ydb cluster discovery attempt
3
4
## v3.90.1
5
* Small broken change: added method `ID()` into `spans.Span` interface (need to implement in adapter)
internal/balancer/balancer.go
@@ -202,6 +202,9 @@ func makeDiscoveryFunc(
202
append(
203
driverConfig.GrpcDialOptions(),
204
grpc.WithBlock(),
205
+ grpc.WithDefaultServiceConfig(`{
206
+ "loadBalancingPolicy": "pick_first"
207
+ }`),
208
)...,
209
)
210
if err != nil {
0 commit comments