Big Data Processing
Unified Batch and Stream Processing
★ 4.5
Distributed SQL Query Engine
★ 4.5
pip install apache-beampip install presto-python-clientpip install apache-beampip install presto-python-clientPython data engineers use Apache Beam to write portable data pipelines that run locally for testing and deploy to Google Dataflow or Flink in production without code changes. The Python SDK's `PCollection` API chains transforms — `ReadFromBigQuery | Map(transform_fn) | WriteToBigQuery` — enabling the same pipeline logic to handle both batch backfills and live streaming.
Python data engineers use `pyhive` or `presto-python-client` to run federated SQL queries that join data across S3-backed Hive tables, relational databases, and Kafka topics in a single query. This eliminates the need to move data before querying — engineers write one SQL statement and Presto distributes the query across sources.
Individual Tool Pages