-
Notifications
You must be signed in to change notification settings - Fork 9.2k
MAPREDUCE-7497. mapreduce tests have stopped running. #7343
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -43,7 +43,12 @@ public ApplicationEntity(TimelineEntity entity) { | |
| } | ||
|
|
||
| public String getQueue() { | ||
| return getInfo().get(QUEUE_INFO_KEY).toString(); | ||
| if (getInfo() != null) { | ||
|
||
| if (getInfo().containsKey(QUEUE_INFO_KEY)) { | ||
| return getInfo().get(QUEUE_INFO_KEY).toString(); | ||
| } | ||
| } | ||
| return ""; | ||
| } | ||
|
|
||
| public void setQueue(String queue) { | ||
|
|
||
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.
Does the default stack size not work?
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.
This change was made because the
ResourceManagermodule in #7335 reported anunable to create new native threadexception. Additionally, the third build result of #7335 appeared abnormal, and I suspected that the issue might be caused by the large number of compiled modules. I increased the-Xsssize, which seemed to have some effect. The default value for this parameter is 1m.The build report is as follows:
https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7335/3/artifact/out/patch-unit-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt
If either #7343 or #7335 is merged, the other PR can remove this change.