A command-line interface for packaging, deploying, and running your PySpark jobs on EMR.
Project description
EMR CLI
So we're all working on data pipelines every day, but wouldn't be nice to just hit a button and have our code automatically deployed to staging or test accounts? I thought so, too, thats why I created the EMR CLI (emr
) that can help you package and deploy your EMR jobs so you don't have to.
The EMR CLI supports a wide variety of configuration options to adapt to your data pipeline, not the other way around.
- Packaging - Ensure a consistent approach to packaging your production Spark jobs.
- Deployment - Easily deploy your Spark jobs across multiple EMR environments or deployment frameworks like EC2, EKS, and Serverless.
- CI/CD - Easily test each iteration of your code without resorting to messy shell scripts. :)
The initial use cases are:
- Consistent packaging for PySpark projects.
- Use in CI/CD pipelines for packaging, deployment of artifacts, and integration testing.
Warning: This tool is still under active development, so commands may change until a stable 1.0 release is made.
Quick Start
You can use the EMR CLI to take a project from nothing to running in EMR Serverless is 2 steps.
First, let's install the emr
command.
python3 -m pip install -U emr-cli
Note This tutorial assumes you have already setup EMR Serverless and have an EMR Serverless application, job role, and S3 bucket you can use. If not, you can use the
emr bootstrap
command.
- Create a sample project
emr init scratch
📔 Tip: Use
--project-type poetry
to create a Poetry project!
You should now have a sample PySpark project in your scratch directory.
scratch
├── Dockerfile
├── entrypoint.py
├── jobs
│ └── extreme_weather.py
└── pyproject.toml
1 directory, 4 files
- Now deploy and run on an EMR Serverless application!
emr run \
--entry-point entrypoint.py \
--application-id ${APPLICATION_ID} \
--job-role ${JOB_ROLE_ARN} \
--s3-code-uri s3://${S3_BUCKET}/tmp/emr-cli-demo/ \
--s3-logs-uri s3://${S3_BUCKET}/logs/emr-cli-demo/ \
--build \
--show-stdout
This command performs the following actions:
- Packages your project dependencies into a Python virtual environment
- Uploads the Spark entrypoint and packaged dependencies to S3
- Starts an EMR Serverless job
- Waits for the job to run to completion and shows the
stdout
of the Spark driver when finished!
And you're done. Feel free to modify the project to experiment with different things. You can simply re-run the command above to re-package and re-deploy your job.
EMR CLI Sub-commands
The EMR CLI has several subcommands that you can see by running emr --help
Commands:
bootstrap Bootstrap an EMR Serverless environment.
deploy Copy a local project to S3.
init Initialize a local PySpark project.
package Package a project and dependencies into dist/
run Run a project on EMR, optionally build and deploy
status
bootstrap
emr bootstrap
allows you to create a sample EMR Serverless or EMR on EC2 environment for testing. It assumes you have admin access and creates various resources for you using AWS APIs.
EMR Serverless
To create a bootstrap EMR Serverless environment, using the following command:
emr bootstrap \
--target emr-serverless \
--code-bucket <your_unique_new_bucket_name> \
--job-role-name <your_unique_emr_serverless_job_role_name>
When you do this, the CLI creates a new EMR CLI config file at .emr/config.yaml
that will set default locations for your emr run
command.
init
The init
command creates a new pyproject.toml
or poetry
project for you with a sample PySpark application.
init
is required to create those project types as it also initializes a Dockerfile
used to package your dependencies. Single-file PySpark jobs and simple Python modules do not require the init
command to be used.
package
The package
command bundles your PySpark code and dependencies in preparation for deployment. Often you'll either use package
and deploy
to deploy new artifacts to S3, or you'll use the --build
flag in the emr run
command to handle both of those tasks for you.
The EMR CLI automatically detects what type of project you have and builds the necessary dependency packages.
deploy
The deploy
command copies the project dependencies from the dist/
folder to your specified S3 location.
run
The run
command is intended to help package, deploy, and run your PySpark code across EMR on EC2, EMR on EKS, or EMR Serverless.
You must provide one of --cluster-id
, --virtual-cluster-id
, or --application-id
to specify which environment to run your code on.
emr run --help
shows all the available options:
Usage: emr run [OPTIONS]
Run a project on EMR, optionally build and deploy
Options:
--application-id TEXT EMR Serverless Application ID
--cluster-id TEXT EMR on EC2 Cluster ID
--virtual-cluster-id TEXT EMR on EKS Virtual Cluster ID
--entry-point FILE Python or Jar file for the main entrypoint
--job-role TEXT IAM Role ARN to use for the job execution
--wait Wait for job to finish
--s3-code-uri TEXT Where to copy/run code artifacts to/from
--s3-logs-uri TEXT Where to send EMR Serverless logs to
--job-name TEXT The name of the job
--job-args TEXT Comma-delimited string of arguments to be
passed to Spark job
--spark-submit-opts TEXT String of spark-submit options
--build Package and deploy job artifacts
--show-stdout Show the stdout of the job after it's finished
--save-config Update the config file with the provided
options
--emr-eks-release-label TEXT EMR on EKS release label (emr-6.15.0) -
defaults to latest release
Support PySpark configurations
- Single-file project - Projects that have a single
.py
entrypoint file. - Multi-file project - A more typical PySpark project, but without dependencies, that has multiple Python files or modules.
- Python module - A project with dependencies defined in a
pyproject.toml
file. - Poetry project - A project using Poetry for dependency management.
Sample Commands
- Create a new PySpark project (other frameworks TBD)
emr init project-dir
- Package your project into a virtual environment archive
emr package --entry-point main.py
The EMR CLI auto-detects the project type and will change the packaging method appropriately.
If you have additional .py
files, those will be included in the archive.
- Deploy an existing package artifact to S3.
emr deploy --entry-point main.py --s3-code-uri s3://<BUCKET>/code/
- Deploy a PySpark package to S3 and trigger an EMR Serverless job
emr run --entry-point main.py \
--s3-code-uri s3://<BUCKET>/code/ \
--application-id <EMR_SERVERLESS_APP> \
--job-role <JOB_ROLE_ARN>
- Build, deploy, and run an EMR Serverless job and wait for it to finish.
emr run --entry-point main.py \
--s3-code-uri s3://<BUCKET>/code/ \
--application-id <EMR_SERVERLESS_APP> \
--job-role <JOB_ROLE_ARN> \
--build \
--wait
- Re-run an already deployed job and show the
stdout
of the driver.
emr run --entry-point main.py \
--s3-code-uri s3://<BUCKET>/code/ \
--s3-logs-uri s3://<BUCKET>/logs/ \
--application-id <EMR_SERVERLESS_APP> \
--job-role <JOB_ROLE_ARN> \
--show-stdout
Note: If the job fails, the command will exit with an error code.
- Re-run your jobs with 7 characters.
If you provide the --save-config
command to emr run
, it will save a configuration file for you in .emr/config.yaml
and next time you can use emr run
with no parameters to re-run your job.
emr run --entry-point main.py \
... \
--save-config
[emr-cli]: Config file saved to .emr/config.yaml. Use `emr run` to re-use your configuration.
❯ emr run
[emr-cli]: Using config file: .emr/config.yaml
🥳
- Run the same job against an EMR on EC2 cluster
emr run --entry-point main.py \
--s3-code-uri s3://<BUCKET>/code/ \
--s3-logs-uri s3://<BUCKET>/logs/ \
--cluster-id <EMR_EC2_CLUSTER_ID>
--show-stdout
- Or an EMR on EKS virtual cluster.
emr run --entry-point main.py \
--s3-code-uri s3://<BUCKET>/code/ \
--s3-logs-uri s3://<BUCKET>/logs/ \
--virtual-cluster-id <EMR_EC2_CLUSTER_ID> \
--job-role <EMR_EKS_JOB_ROLE_ARN> \
--show-stdout
Security
See CONTRIBUTING for more information.
License
This project is licensed under the Apache-2.0 License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file emr_cli-0.0.19.tar.gz
.
File metadata
- Download URL: emr_cli-0.0.19.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.9.19 Linux/5.15.0-1061-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d057421c7eca546ced3786e6c85acb5cd4122a943f139685ea8eeb0490d118a |
|
MD5 | 2ccc4726f326ebf6cd918025d125be71 |
|
BLAKE2b-256 | 72acba922460ee1db269ef5198363b5a8410d2ca6c9184e29768e3e123873bed |
File details
Details for the file emr_cli-0.0.19-py3-none-any.whl
.
File metadata
- Download URL: emr_cli-0.0.19-py3-none-any.whl
- Upload date:
- Size: 36.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.9.19 Linux/5.15.0-1061-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06e6da576c38c0573b8ce1a317b8ba2f89902e4497ad1a0ee9d2c762acd290c2 |
|
MD5 | 9a4b61594663623c6d2efd5f3a4ab376 |
|
BLAKE2b-256 | 362a12a9633ceb8231468abb8761762b0b9fdcdab782b6a750cafc4c3c9e16c7 |