Sachin verma
Sachin verma
As mentioned in the link you shared, "_When multiple endpoints are discovered for a gRPC client, currently one is selected and used for all outgoing calls_". Ideally we should be...
indeed, but there is no clear doc/explaination on how to achieve client side load balancing, even with the default static mechanism as I mentioned in above comment.
in application projects it works as mentioned in scalaPB docs: [scalaPB docs](https://scalapb.github.io/docs/faq/#how-do-i-generate-scala-code-for-protos-from-another-jar). e.g. ```scala libraryDependencies ++= Seq( "com.somepackage" %% "that-has-jar" % "1.0" % "protobuf-src" intransitive(), // then manually importing the...