Big Data Processing
Spark's Graph Processing API
★ 4.1
Spark's Machine Learning Library
★ 4.5
pip install graphframespip install pysparkpip install graphframespip install pysparkPython data engineers work with Spark GraphX indirectly via PySpark's `graphframes` library, which wraps GraphX with a DataFrame-based API. Engineers use GraphFrames to compute network metrics — PageRank, shortest paths, triangle counts — on large graphs stored as edge and vertex DataFrames in a Spark data lake pipeline.
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