皇上,还记得我吗?我就是1999年那个Linux伊甸园啊-----24小时滚动更新开源资讯,全年无休!

Apache Beam™ SDK 2.25.0 发布

Using a central repository

The easiest way to use Apache Beam is via one of the released versions in a central repository. The Java SDK is available on Maven Central Repository, and the Python SDK is available on PyPI.

For example, if you are developing using Maven and want to use the SDK for Java with the DirectRunner, add the following dependencies to your pom.xml file:

<dependency>
  <groupId>org.apache.beam</groupId>
  <artifactId>beam-sdks-java-core</artifactId>
  <version>2.25.0</version>
</dependency>
<dependency>
  <groupId>org.apache.beam</groupId>
  <artifactId>beam-runners-direct-java</artifactId>
  <version>2.25.0</version>
  <scope>runtime</scope>
</dependency>

Similarly in Python, if you are using PyPI and want to use the SDK for Python with DirectRunner, add the following requirement to your setup.py file:

apache-beam==2.25.0

Additionally, you may want to depend on additional SDK modules, such as IO connectors or other extensions, and additional runners to execute your pipeline at scale.

Downloading source code

You can download the source code package for a release from the links in the Releases section.

Release integrity

You must verify the integrity of downloaded files. We provide OpenPGP signatures for every release file. This signature should be matched against the KEYS file which contains the OpenPGP keys of Apache Beam’s Release Managers. We also provide SHA-512 checksums for every release file (or SHA-1 and MD5 checksums for older releases). After you download the file, you should calculate a checksum for your download, and make sure it is the same as ours.

API stability

Apache Beam generally follows the rules of semantic versioning with exceptions. Version numbers use the form major.minor.incremental and are incremented as follows:

  • major version for incompatible API changes
  • minor version for new functionality added in a backward-compatible manner, infrequent incompatible API changes
  • incremental version for forward-compatible bug fixes

Please note that APIs marked @Experimental may change at any point and are not guaranteed to remain compatible across versions.

Additionally, any API may change before the first stable release, i.e., between versions denoted 0.x.y.

Releases

2.25.0 (2020-10-23)

Official source code download. SHA-512. signature.

Release notes. Blog post.

转自 https://beam.apache.org/get-started/downloads/