Add Validation for Python Script Argument in gluepyspark Script #213
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The gluepyspark script should validate whether any of the provided arguments are Python scripts (i.e., files with a .py extension). If a Python script is detected, the script should display the following message and exit:
Please use ./bin/gluesparksubmit <Python script path> to run scripts through Glue.
This change ensures that gluepyspark is used exclusively for launching interactive sessions.
Proposed Change: Add a loop to iterate through the provided arguments and check if any argument ends with .py. If such an argument is found, print a message and exit the script.
Impact: This change will prevent users from mistakenly using gluepyspark to run Python scripts, ensuring that the script is used only for its intended purpose of launching interactive sessions.