Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the aws cli command #78

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions website/blog/2022-11-28-emr-eks-emr-studio.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,16 +130,16 @@ Before you run the command below, make sure to change update the following param
```bash

aws emr-containers start-job-run \
--virtual-cluster-id=CLUSTER-ID\
--virtual-cluster-id CLUSTER-ID\
--name=SPARK-JOB-NAME\
--execution-role-arn=ROLE-ARN \
--release-label=emr-6.8.0-latest \
--job-driver='{
--execution-role-arn ROLE-ARN \
--release-label emr-6.8.0-latest \
--job-driver '{
"sparkSubmitJobDriver":{
"entryPoint": "local:///usr/lib/spark/examples/src/main/python/pi.py"
}
}' \
--configuration-overrides='{
--configuration-overrides '{
"applicationConfiguration": [
{
"classification": "spark-defaults",
Expand Down