-
Notifications
You must be signed in to change notification settings - Fork 8.9k
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
HADOOP-13341: Deprecate HADOOP_SERVERNAME_OPTS; replace with (command)_(subcommand)_OPTS #126
Conversation
MAPRED_DISTCP_OPTS="-Xmx2g" | ||
``` | ||
|
||
These options will appear *after* `HADOOP_CLIENT_OPTS` during execution and will generally take precedence. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
might be good to add an example here. e.g what the final options of distcp are going to be. Will there be two -Xmx commands? if so, which wins? Because I suspect that's a JVM decision
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If there is an Xmx in HADOOP_CLIENT_OPTS and an Xmx in MAPRED_DISTCP_OPTS, then the mapred distcp final HADOOP_OPTS will definitely have two Xmx flags. After HADOOP-13365, we'll be in a position to potentially de-dupe user provided settings like we do for other things. But until de-dupe, you're correct that it's a JVM decision. In the past, that decision has been last one wins and I doubt Oracle could change it if they wanted to at this point without major ramifications.
Signed-off-by: Allen Wittenauer <[email protected]>
Signed-off-by: Allen Wittenauer <[email protected]>
Signed-off-by: Allen Wittenauer <[email protected]>
…subcommand_opts (ie more granularity) Signed-off-by: Allen Wittenauer <[email protected]>
Signed-off-by: Allen Wittenauer <[email protected]>
…tent during debug Signed-off-by: Allen Wittenauer <[email protected]>
Signed-off-by: Allen Wittenauer <[email protected]>
Author: Shanthoosh Venkataraman <[email protected]> Reviewers: Navina Ramesh <[email protected]> Closes apache#126 from shanthoosh/disable_all_async_run_loop_tests
No description provided.