Stream Processing
Incremental Data Processing Framework
★ 4.4
Scalable Stream Processing
★ 4.6
pip install hudipip install pysparkpip install hudipip install pysparkPython data engineers use Hudi with PySpark to build CDC (Change Data Capture) pipelines on data lakes — ingesting database change events from Kafka and applying upserts to Hudi tables on S3 using `UPSERT` operation type. Hudi handles deduplication and merge semantics automatically, enabling mutable data lake tables without full partition rewrites.
Python data engineers use Spark Structured Streaming via PySpark to process high-volume Kafka streams at scale. A streaming job reads a Kafka topic as a DataFrame, applies transformations (filtering, aggregations, joins with static data), and writes results continuously to Delta Lake or a database — using the same PySpark syntax as batch jobs.
Individual Tool Pages