The Java gRPC implementation. HTTP/2 based RPC
Go to file
Terry Wilson 49f555192d
xds: cluster manager to delay picker updates (#9365)
Do not perform picker updates while handling new addresses even if child
LBs request it. Assure that a single picker update is done.
2022-07-13 15:54:49 -07:00
.github
all Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
alts Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
android Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
android-interop-testing Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
api Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
auth Use Gradle's version catalog 2022-06-14 14:04:10 -07:00
authz Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
benchmarks Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
binder Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
bom Revert "bom: Remove protoc-gen-grpc-java" 2022-05-09 10:28:32 -07:00
buildscripts xds: Allow Gradle to use more memory when building interop - GCE (#9354) 2022-07-08 19:28:23 -07:00
census Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
compiler Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
context Suppress CheckReturnValue error in PersistentHashArrayMappedTrieTest (#9038) 2022-03-31 19:50:11 -07:00
core core: server stream should not deliver halfClose() when call is immediately cancelled(#9362) 2022-07-11 17:33:57 -07:00
cronet Use Gradle's version catalog 2022-06-14 14:04:10 -07:00
documentation Update README etc to reference 1.47.0, protobuf plugin 0.8.18 2022-06-02 12:02:16 -07:00
examples core: Use SyncContext for InProcessTransport listener callbacks to avoid deadlocks 2022-06-30 13:41:36 -07:00
gae-interop-testing Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
gcp-observability Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
googleapis Add Bazel build support for xds, googleapis to flesh out maven_install 2022-05-16 10:05:35 -07:00
gradle Bump versions for assorted dependencies 2022-06-30 15:25:43 -07:00
grpclb Service config parse failures should be UNAVAILABLE 2022-07-08 15:49:12 -07:00
interop-testing Fix Gradle UP-TO-DATE checking for all tasks 2022-07-11 11:06:10 -07:00
istio-interop-testing Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
netty Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
okhttp okhttp: Avoid default locale in String.format() 2022-07-13 11:10:22 -07:00
protobuf Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
protobuf-lite Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
rls Service config parse failures should be UNAVAILABLE 2022-07-08 15:49:12 -07:00
services Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
stub Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
testing Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00
testing-proto Use Gradle's version catalog 2022-06-14 14:04:10 -07:00
xds xds: cluster manager to delay picker updates (#9365) 2022-07-13 15:54:49 -07:00
.bazelignore
.gitattributes
.gitignore
AUTHORS
BUILD.bazel Add Bazel build support for xds, googleapis to flesh out maven_install 2022-05-16 10:05:35 -07:00
CODE-OF-CONDUCT.md
COMPILING.md Bump protobuf to 3.21.1 (#9311) 2022-06-30 11:18:49 -07:00
CONTRIBUTING.md
GOVERNANCE.md
LICENSE
MAINTAINERS.md Update MAINTAINERS.md 2022-06-21 17:04:56 -07:00
NOTICE.txt
README.md Update README.md broken link 2022-07-07 07:25:07 -07:00
RELEASING.md examples: add examples-orca (#9204) 2022-05-26 10:23:43 -07:00
SECURITY.md all: Update netty to 4.1.77.Final and netty_tcnative to 2.0.53.Final (#9027) 2022-06-24 10:47:27 -07:00
WORKSPACE all: Update netty to 4.1.77.Final and netty_tcnative to 2.0.53.Final (#9027) 2022-06-24 10:47:27 -07:00
build.gradle Fix Gradle UP-TO-DATE checking for all tasks 2022-07-11 11:06:10 -07:00
codecov.yml
gradlew
gradlew.bat
java_grpc_library.bzl Pass use_default_shell_env = True for protoc (#8984) 2022-03-16 13:38:37 -07:00
repositories.bzl Bump Bazel deps missed in fb314d3 2022-07-01 12:08:33 -07:00
run-test-client.sh
run-test-server.sh
settings.gradle Use Gradle's task configuration avoidance APIs 2022-07-08 12:16:40 -07:00

README.md

gRPC-Java - An RPC library and framework

gRPC-Java works with JDK 8. gRPC-Java clients are supported on Android API levels 19 and up (KitKat and later). Deploying gRPC servers on an Android device is not supported.

TLS usage typically requires using Java 8, or Play Services Dynamic Security Provider on Android. Please see the Security Readme.

Homepage: grpc.io
Mailing List: grpc-io@googlegroups.com

Join the chat at https://gitter.im/grpc/grpc Build Status Line Coverage Status Branch-adjusted Line Coverage Status

Getting Started

For a guided tour, take a look at the quick start guide or the more explanatory gRPC basics.

The examples and the Android example are standalone projects that showcase the usage of gRPC.

Download

Download the JARs. Or for Maven with non-Android, add to your pom.xml:

<dependency>
  <groupId>io.grpc</groupId>
  <artifactId>grpc-netty-shaded</artifactId>
  <version>1.47.0</version>
  <scope>runtime</scope>
</dependency>
<dependency>
  <groupId>io.grpc</groupId>
  <artifactId>grpc-protobuf</artifactId>
  <version>1.47.0</version>
</dependency>
<dependency>
  <groupId>io.grpc</groupId>
  <artifactId>grpc-stub</artifactId>
  <version>1.47.0</version>
</dependency>
<dependency> <!-- necessary for Java 9+ -->
  <groupId>org.apache.tomcat</groupId>
  <artifactId>annotations-api</artifactId>
  <version>6.0.53</version>
  <scope>provided</scope>
</dependency>

Or for Gradle with non-Android, add to your dependencies:

runtimeOnly 'io.grpc:grpc-netty-shaded:1.47.0'
implementation 'io.grpc:grpc-protobuf:1.47.0'
implementation 'io.grpc:grpc-stub:1.47.0'
compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+

For Android client, use grpc-okhttp instead of grpc-netty-shaded and grpc-protobuf-lite instead of grpc-protobuf:

implementation 'io.grpc:grpc-okhttp:1.47.0'
implementation 'io.grpc:grpc-protobuf-lite:1.47.0'
implementation 'io.grpc:grpc-stub:1.47.0'
compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+

Development snapshots are available in Sonatypes's snapshot repository.

Generated Code

For protobuf-based codegen, you can put your proto files in the src/main/proto and src/test/proto directories along with an appropriate plugin.

For protobuf-based codegen integrated with the Maven build system, you can use protobuf-maven-plugin (Eclipse and NetBeans users should also look at os-maven-plugin's IDE documentation):

<build>
  <extensions>
    <extension>
      <groupId>kr.motd.maven</groupId>
      <artifactId>os-maven-plugin</artifactId>
      <version>1.6.2</version>
    </extension>
  </extensions>
  <plugins>
    <plugin>
      <groupId>org.xolstice.maven.plugins</groupId>
      <artifactId>protobuf-maven-plugin</artifactId>
      <version>0.6.1</version>
      <configuration>
        <protocArtifact>com.google.protobuf:protoc:3.19.2:exe:${os.detected.classifier}</protocArtifact>
        <pluginId>grpc-java</pluginId>
        <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.47.0:exe:${os.detected.classifier}</pluginArtifact>
      </configuration>
      <executions>
        <execution>
          <goals>
            <goal>compile</goal>
            <goal>compile-custom</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
  </plugins>
</build>

For non-Android protobuf-based codegen integrated with the Gradle build system, you can use protobuf-gradle-plugin:

plugins {
    id 'com.google.protobuf' version '0.8.18'
}

protobuf {
  protoc {
    artifact = "com.google.protobuf:protoc:3.19.2"
  }
  plugins {
    grpc {
      artifact = 'io.grpc:protoc-gen-grpc-java:1.47.0'
    }
  }
  generateProtoTasks {
    all()*.plugins {
      grpc {}
    }
  }
}

The prebuilt protoc-gen-grpc-java binary uses glibc on Linux. If you are compiling on Alpine Linux, you may want to use the Alpine grpc-java package which uses musl instead.

For Android protobuf-based codegen integrated with the Gradle build system, also use protobuf-gradle-plugin but specify the 'lite' options:

plugins {
    id 'com.google.protobuf' version '0.8.18'
}

protobuf {
  protoc {
    artifact = "com.google.protobuf:protoc:3.19.2"
  }
  plugins {
    grpc {
      artifact = 'io.grpc:protoc-gen-grpc-java:1.47.0'
    }
  }
  generateProtoTasks {
    all().each { task ->
      task.builtins {
        java { option 'lite' }
      }
      task.plugins {
        grpc { option 'lite' }
      }
    }
  }
}

API Stability

APIs annotated with @Internal are for internal use by the gRPC library and should not be used by gRPC users. APIs annotated with @ExperimentalApi are subject to change in future releases, and library code that other projects may depend on should not use these APIs.

We recommend using the grpc-java-api-checker (an Error Prone plugin) to check for usages of @ExperimentalApi and @Internal in any library code that depends on gRPC. It may also be used to check for @Internal usage or unintended @ExperimentalApi consumption in non-library code.

How to Build

If you are making changes to gRPC-Java, see the compiling instructions.

High-level Components

At a high level there are three distinct layers to the library: Stub, Channel, and Transport.

Stub

The Stub layer is what is exposed to most developers and provides type-safe bindings to whatever datamodel/IDL/interface you are adapting. gRPC comes with a plugin to the protocol-buffers compiler that generates Stub interfaces out of .proto files, but bindings to other datamodel/IDL are easy and encouraged.

Channel

The Channel layer is an abstraction over Transport handling that is suitable for interception/decoration and exposes more behavior to the application than the Stub layer. It is intended to be easy for application frameworks to use this layer to address cross-cutting concerns such as logging, monitoring, auth, etc.

Transport

The Transport layer does the heavy lifting of putting and taking bytes off the wire. The interfaces to it are abstract just enough to allow plugging in of different implementations. Note the transport layer API is considered internal to gRPC and has weaker API guarantees than the core API under package io.grpc.

gRPC comes with three Transport implementations:

  1. The Netty-based transport is the main transport implementation based on Netty. It is for both the client and the server.
  2. The OkHttp-based transport is a lightweight transport based on OkHttp. It is mainly for use on Android and is for client only.
  3. The in-process transport is for when a server is in the same process as the client. It is useful for testing, while also being safe for production use.