Beam

Apache Beam is a unified programming model for Batch and Streaming data processing.
Alternatives To Beam
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Flink22,0183818 hours ago11September 14, 20221,088apache-2.0Java
Apache Flink
Rocketmq19,8423747719 hours ago25June 24, 2023549apache-2.0Java
Apache RocketMQ is a cloud native messaging and streaming platform, making it simple to build event-driven applications.
Beam7,15813a day ago557July 11, 20234,266apache-2.0Java
Apache Beam is a unified programming model for Batch and Streaming data processing.
Storm6,48416 days ago7September 19, 201741apache-2.0Java
Apache Storm
Seatunnel6,434252 days ago3June 13, 2023552apache-2.0Java
SeaTunnel is a next-generation super high-performance, distributed, massive data integration tool.
Incubator Streampark3,436
2 days ago4March 20, 2022378apache-2.0Java
StreamPark, Make stream processing easier! easy-to-use streaming application development framework and operation platform
Flink Training Course2,815
3 years ago17
Flink 中文视频课程(持续更新...)
Scio2,485364 days ago91August 18, 2023151apache-2.0Scala
A Scala API for Apache Beam and Google Cloud Dataflow.
Awesome Streaming2,394
a day ago3
a curated list of awesome streaming frameworks, applications, etc
Spark1,930182 months ago20June 01, 2022188mitC#
.NET for Apache® Spark™ makes Apache Spark™ easily accessible to .NET developers.
Alternatives To Beam
Select To Compare


Alternative Project Comparisons
Readme

Apache Beam

Apache Beam is a unified model for defining both batch and streaming data-parallel processing pipelines, as well as a set of language-specific SDKs for constructing pipelines and Runners for executing them on distributed processing backends, including Apache Flink, Apache Spark, Google Cloud Dataflow, and Hazelcast Jet.

Status

Maven Version PyPI version Go version Python coverage Build python source distribution and wheels Python tests Java tests Go tests (Jenkins) Java tests (Jenkins) Python tests (Jenkins)

Overview

Beam provides a general approach to expressing embarrassingly parallel data processing pipelines and supports three categories of users, each of which have relatively disparate backgrounds and needs.

  1. End Users: Writing pipelines with an existing SDK, running it on an existing runner. These users want to focus on writing their application logic and have everything else just work.
  2. SDK Writers: Developing a Beam SDK targeted at a specific user community (Java, Python, Scala, Go, R, graphical, etc). These users are language geeks and would prefer to be shielded from all the details of various runners and their implementations.
  3. Runner Writers: Have an execution environment for distributed processing and would like to support programs written against the Beam Model. Would prefer to be shielded from details of multiple SDKs.

The Beam Model

The model behind Beam evolved from several internal Google data processing projects, including MapReduce, FlumeJava, and Millwheel. This model was originally known as the “Dataflow Model”.

To learn more about the Beam Model (though still under the original name of Dataflow), see the World Beyond Batch: Streaming 101 and Streaming 102 posts on O’Reilly’s Radar site, and the VLDB 2015 paper.

The key concepts in the Beam programming model are:

  • PCollection: represents a collection of data, which could be bounded or unbounded in size.
  • PTransform: represents a computation that transforms input PCollections into output PCollections.
  • Pipeline: manages a directed acyclic graph of PTransforms and PCollections that is ready for execution.
  • PipelineRunner: specifies where and how the pipeline should execute.

SDKs

Beam supports multiple language-specific SDKs for writing pipelines against the Beam Model.

Currently, this repository contains SDKs for Java, Python and Go.

Have ideas for new SDKs or DSLs? See the sdk-ideas label.

Runners

Beam supports executing programs on multiple distributed processing backends through PipelineRunners. Currently, the following PipelineRunners are available:

  • The DirectRunner runs the pipeline on your local machine.
  • The DataflowRunner submits the pipeline to the Google Cloud Dataflow.
  • The FlinkRunner runs the pipeline on an Apache Flink cluster. The code has been donated from dataArtisans/flink-dataflow and is now part of Beam.
  • The SparkRunner runs the pipeline on an Apache Spark cluster.
  • The JetRunner runs the pipeline on a Hazelcast Jet cluster. The code has been donated from hazelcast/hazelcast-jet and is now part of Beam.
  • The Twister2Runner runs the pipeline on a Twister2 cluster. The code has been donated from DSC-SPIDAL/twister2 and is now part of Beam.

Have ideas for new Runners? See the runner-ideas label.

Instructions for building and testing Beam itself are in the contribution guide.

📚 Learn More

Here are some resources actively maintained by the Beam community to help you get started:

Resource Details
Apache Beam Website Our website discussing the project, and it's specifics.
Java Quickstart A guide to getting started with the Java SDK.
Python Quickstart A guide to getting started with the Python SDK.
Go Quickstart A guide to getting started with the Go SDK.
Tour of Beam A comprehensive, interactive learning experience covering Beam concepts in depth.
Beam Quest A certification granted by Google Cloud, certifying proficiency in Beam.
Community Metrics Beam's Git Community Metrics.

Contact Us

To get involved with Apache Beam:

Popular Streaming Projects
Popular Apache Projects
Popular Networking Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
Java
Golang
Sql
Apache
Pipeline
Streaming
Big Data
Dataflow