Skip to content

Commit

Permalink
Review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
thvasilo committed Jul 1, 2024
1 parent 2dfb0b7 commit db38b9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/gs-processing/usage/emr.rst
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ using the above Python script.
S3_ENTRY_POINT="s3://${OUTPUT_BUCKET}/emr-scripts/distributed_executor.py"
aws s3 cp "${PATH_TO_ENTRYPOINT}" ${S3_ENTRY_POINT}
OUTPUT_PREFIX="s3://${OUTPUT_BUCKET}/gsprocessing/emr/${GRAPH_NAME}/"
OUTPUT_PREFIX="s3://${OUTPUT_BUCKET}/gsprocessing/emr/${GRAPH_NAME}"
python "${SCRIPT_DIR}/submit_gsp_emr_step.py" \
--entry-point-s3 ${S3_ENTRY_POINT} \
Expand Down
4 changes: 2 additions & 2 deletions graphstorm-processing/scripts/submit_gsp_emr_step.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def parse_args():
"--worker-count",
type=int,
required=True,
help="Number of worker (core) instances. Required",
help="Number of worker instances. Required",
)
parser.add_argument(
"--instance-type",
Expand All @@ -74,7 +74,7 @@ def parse_args():
)
parser.add_argument(
"--service-role",
default="EMR_DefaultRole",
default="EMR_DefaultRole_V2",
help="EMR service role to use for the EMR cluster. Defaults to EMR_DefaultRole.",
)
parser.add_argument(
Expand Down

0 comments on commit db38b9a

Please sign in to comment.