https://github.com/aws-samples/emr-bootstrap-actions
This repository hold the Amazon Elastic MapReduce sample bootstrap actions
https://github.com/aws-samples/emr-bootstrap-actions
Last synced: 27 days ago
JSON representation
This repository hold the Amazon Elastic MapReduce sample bootstrap actions
- Host: GitHub
- URL: https://github.com/aws-samples/emr-bootstrap-actions
- Owner: aws-samples
- License: other
- Created: 2013-09-25T16:08:07.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-06-05T22:56:35.000Z (over 2 years ago)
- Last Synced: 2025-11-16T15:05:33.906Z (about 2 months ago)
- Language: Shell
- Size: 360 KB
- Stars: 613
- Watchers: 74
- Forks: 304
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- fucking-awesome-aws - emr-bootstrap-actions :fire::fire::fire: - Sample bootstrap actions. (Open Source Repos / Elastic MapReduce)
- awesome-aws - emr-bootstrap-actions :fire::fire::fire: - Sample bootstrap actions. (Open Source Repos / Elastic MapReduce)
- awesome-aws - emr-bootstrap-actions :fire::fire::fire: - Sample bootstrap actions. (Open Source Repos / Elastic MapReduce)
README
EMR bootstrap actions
=====================
> **Warning**: This repository is undergoing updating and modernization – please bear with us.
A bootstrap action is a shell script stored in [Amazon S3](http://aws.amazon.com/s3/) that [Amazon EMR](https://aws.amazon.com/emr/) executes on every node of your cluster after boot and prior to application provisioning.
Bootstrap actions execute as the `hadoop` user by default; commands can be executed with root privileges if you use `sudo`.
From the [AWS CLI EMR `create-cluster` command](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/emr/create-cluster.html) you can reference a bootstrap action as follows:
```sh
--bootstrap-actions Name=action-name,Path=s3://myawsbucket/FileName,Args=arg1,arg2
```
For more information about EMR Bootstrap actions see [DeveloperGuide](https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-bootstrap.html)
The code samples in this repository are meant to illustrate how to setup popular applications on Amazon EMR using bootstrap actions.
They are not meant to be run in production and all users should carefully inspect code samples before running them.
_Use at your own risk._