tree: c550679d82614eb29863087a05cdbd18a8e7e6f0 [path history] [tgz]
  1. bytebuddy-1_12_8/
  2. calcite-1_28_0/
  3. grpc-1_43_2/
  4. guava-26_0-jre/
  5. README.md
vendor/README.md

Vendored Dependencies Release

The upgrading of the vendored dependencies should be performed in two steps:

  • Firstly, we need to perform a formal release of the vendored dependency. The release process of the vendored dependency is separate from the release of Apache Beam.
  • When the release of the vendored dependency is out, we can migrate Apache Beam to use the newly released vendored dependency.

How to validate the vendored dependencies

Linkage Tool

The linkage tool is useful for the vendored dependency upgrades. It reports the linkage errors across multiple Apache Beam artifact ids.

For example, when we upgrade the version of gRPC to 1.43.2 and the version of the vendored gRPC is 0.1-SNAPSHOT, we could run the linkage tool as following:

$ ./gradlew -p vendor/grpc-1_43_2 publishMavenJavaPublicationToMavenLocal -Ppublishing -PvendoredDependenciesOnly
$ ./gradlew -PvendoredDependenciesOnly -Ppublishing -PjavaLinkageArtifactIds=beam-vendor-grpc-1_43_2:0.1-SNAPSHOT :checkJavaLinkage

Known Linkage Errors in the Vendored gRPC Dependencies

It's expected that the task outputs some linkage errors. While the checkJavaLinkage task does not retrieve optional dependencies to avoid bloated dependency trees, Netty (one of gRPC dependencies) has various optional features through optional dependencies. Therefore the task outputs the linkage errors on the references to missing classes in the optional dependencies when applied for the vendored gRPC artifact.

As long as Beam‘s use of gRPC does not touch these optional Netty features or the classes are available at runtime, it’s fine to have the references to the missing classes. Here are the known linkage errors:

  • References to org.junit.*: io.grpc.testing.GrpcCleanupRule and io.grpc.testing.GrpcServerRule uses JUnit classes, which are present when we run Beam's tests.
  • References from io.netty.handler.ssl: Netty users can choose SSL implementation based on the platform (Netty documentation). Beam's vendored gRPC uses netty-tcnative-boringssl-static, which contains the static libraries for all supported OS architectures (x86_64 and aarch64). The io.netty.handler.ssl package has classes that have references to missing classes in other unused optional SSL implementations.
  • References from io.netty.handler.codec.compression: Beam does not use the optional dependencies for compression algorithms (jzlib, lzma, and lzf) through Netty's features.
  • References to com.google.protobuf.nano and org.jboss.marshalling: Beam does not use the optional serialization algorithms.
  • References from io.netty.util.internal.logging: Netty‘s logging framework can choose available loggers at runtime. The logging implementations are optional dependencies and thus are not needed to be included in the vendored artifact. Slf4j-api is available at Beam’s runtime.
  • References to reactor.blockhound: When enabled, Netty's BlockHound integration can detect unexpected blocking calls. Beam does not use it.

Create testing PR against new artifacts

Once you've verified using the linkage tool, you can test new artifacts by running unit and integration tests against a PR.

Example PRs:

Steps:

  1. Generate new artifact files with publishMavenJavaPublicationToMavenLocal and copy to a folder in Beam (e.g. tempLib):
./gradlew -p vendor/grpc-1_43_2 publishMavenJavaPublicationToMavenLocal -Ppublishing -PvendoredDependenciesOnly

# Copy files (jar/poms/metadata) to your beam repository
cp -R ~/.m2/repository/org/apache/beam/beam-vendor-grpc-1_43_2/ \
      $BEAMDIR/tempLib/org/apache/beam/beam-vendor-grpc-1_43_2
  1. Add the folder to the expected project repositories:
repositories {
    maven { url "${project.rootDir}/tempLib" }
    maven {
      ...
    }
}
  1. Migrate all references from the old dependency to the new dependency, including imports if needed.

  2. Commit any added or changed files and create a PR to run unit and integration tests on. This can be a draft PR, as you will not merge this PR.