
Explore Apache Beam features and Cloud Dataflow, covering Beam architecture, stateful processing with timers, metrics, watermark, and triggers, plus batch and streaming pipelines.
Explore big data concepts, from volumes and structured or unstructured data to parallel processing, validation, cleansing, transformation, and aggregation, with emphasis on chunking data and merging results in Apache Beam.
Explore Apache Beam and Google Cloud Dataflow, the open source model for batch and streaming data, with direct and Spark runners, multi-language support, and built-in templates, SQL, and ML capabilities.
Launch your first Apache Beam program by setting up a Maven project, reading invoice, item, and store data with text IO, and mapping records on the direct runner.
Explore how CoGroupByKey and group by key in Apache Beam join invoices and items by person id and item id to enrich records with item names.
Explore how combine enables gradual aggregation and contrast with group by key, then implement a custom CombineFn to compute per-key averages by maintaining a serializable accumulator with sum and count.
Learn how to use side inputs in Apache Beam to enrich a main dataset with auxiliary data, such as adding store names to items via a PCollection view.
Explore schema transforms in Apache Beam, including select, group, join, and filter, using an invoice dataset to demonstrate field selection, flattening, aggregation, and sql-like predicates.
Learn how Apache Beam metrics work through a Java example: counters, distribution, and gauge counters track totals, skipped items, and amount distributions, with metrics results shown after the pipeline runs.
Apply fixed time windows to group keyed data within each 60-second interval, attach timestamps to records, and write the grouped results to a CSV file.
Refer Windows project for the code
This is an advanced course on Apache Beam and Google Cloud Dataflow. This course is suitable for students of All levels. Basic Java knowledge is sufficient to start this course. Every concept is provided with practice sessions which will provide confidence to work on such projects where these technologies are used. Following are some of the important sections in this training,
Apache Beam overview
Working with beam pipelines
Pipeline options
User Defined Functions using ParDo
GroupByKey
CoGroupByKey
Aggregate data using Combine function
Merge Data using Flatten
Generate Multiple Dataset using MultiOutput
Use Side Inputs
Schema in Apache beam - Filter, Group and Join the data using Schema
Stateful pipelines using State and Timer
Add Custom Metrics to your pipeline
Beam SQL - use simple SQLs to build beam pipelines
Splittable DoFn
Windowing in Apache Beam - Fixed time, Sliding , Global, Session
Watermark and Triggers
Learn basics of Cloud computing platforms
Cloud Dataflow - Know about the Managed Apache Beam runner from Google Cloud Platform
Apache Beam programming using Python
Run your pipeline in Cloud Dataflow
How to use built in Templates - introducing the wide variety of built-in templates provided by Google Cloud Dataflow
Custom templates using Classic and Flex mode - Build custom templates using the beam pipelines created in the beam practice