Big Data Processing
Distributed Storage and Processing Framework
★ 4.2
Spark's Machine Learning Library
★ 4.5
pip install hdfspip install pysparkpip install hdfspip install pysparkPython data engineers interact with Hadoop primarily via PySpark (which runs on YARN), Hive (using PyHive or impyla), and HDFS (using hdfs3 or fsspec). While Hadoop MapReduce has been largely replaced by Spark for new development, HDFS remains the storage layer for many on-premise data lakes. Python engineers use Hadoop ecosystem tools for legacy batch pipelines, Hive-based data warehouses, and large organisations with existing Hadoop infrastructure.
Python data engineers use PySpark's `pyspark.ml` module to train machine learning models on datasets too large for scikit-learn. An MLlib Pipeline chains a `StringIndexer`, `VectorAssembler`, and `GBTClassifier` — fitting the pipeline on a distributed Spark DataFrame and saving the trained model to S3 for later scoring in a batch inference job.
Individual Tool Pages