e8de468b0b
* (executor-api) Make executor API talk GRPC The executor's REST API was very fragile and annoying to work with, lacking even basic type safety. Migrate to use GRPC instead. GRPC is a bit of a pain with how verbose it is, but that is probably a lesser evil. This is a fairly straightforward change, but it's also large so a solid round of testing is needed... The change set breaks out the GrpcStubPool previously residing in the QueryService, and makes it available to all clients. ServiceId.name was also renamed to avoid the very dangerous clash with Enum.name(). The boilerplate needed for grpc was also extracted into a common gradle file for inclusion into the appropriate build.gradle-files.
29 lines
739 B
Groovy
29 lines
739 B
Groovy
// Boilerplate configuration that should be included whenever protobufs are used
|
|
// see e.g. index-api's build.gradle
|
|
|
|
protobuf {
|
|
protoc {
|
|
if (osdetector.os == "osx") {
|
|
artifact = "com.google.protobuf:protoc:3.0.2:osx-x86_64"
|
|
} else {
|
|
artifact = "com.google.protobuf:protoc:3.0.2"
|
|
}
|
|
}
|
|
plugins {
|
|
grpc {
|
|
if (osdetector.os == "osx") {
|
|
artifact = "io.grpc:protoc-gen-grpc-java:1.1.2:osx-x86_64"
|
|
} else {
|
|
artifact = "io.grpc:protoc-gen-grpc-java:1.1.2"
|
|
}
|
|
}
|
|
}
|
|
|
|
generateProtoTasks {
|
|
all().each { task ->
|
|
task.plugins {
|
|
grpc {}
|
|
}
|
|
}
|
|
}
|
|
} |