daugraph opened a new pull request #34046: URL: https://github.com/apache/spark/pull/34046
### What changes were proposed in this pull request? Support --verbose option in YARN mode ### Why are the changes needed? If we submit the spark application with the --verbose parameter in yarn mode, we will get the following exception: ```bash Exception in thread "main" java.lang.IllegalArgumentException: Unknown/unsupported param List(--verbose)Exception in thread "main" ``` SparkSubmit invoke YarnClusterApplication with --verbose arguments and ClientArguments used by YarnClusterApplication don't support that argument by now, as a result, IllegalArgumentException is thrown in ClientArguments. I think we can support --verbose in YARN mode to keep consistency with other module ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? After apply this patch, application will submit successful -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
