Big Data Processing
Managed Big Data Platform
★ 4.5
Spark's Machine Learning Library
★ 4.5
pip install boto3pip install pysparkpip install boto3pip install pysparkPython data engineers submit PySpark jobs to EMR using the `boto3` `emr` client — creating a cluster, adding a Spark step with the S3 path to a Python script, and monitoring step completion. EMR Serverless further simplifies this by accepting a PySpark application without any cluster configuration, executing it on demand and terminating resources automatically.
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