You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "genericqa (JIRA)" <ji...@apache.org> on 2018/02/21 13:11:00 UTC

[jira] [Commented] (HADOOP-15180) branch-2 : daemon processes' sysout overwrites 'ulimit -a' in daemon's out file

    [ https://issues.apache.org/jira/browse/HADOOP-15180?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16371384#comment-16371384 ] 

genericqa commented on HADOOP-15180:
------------------------------------

| (x) *{color:red}-1 overall{color}* |
\\
\\
|| Vote || Subsystem || Runtime || Comment ||
| {color:blue}0{color} | {color:blue} reexec {color} | {color:blue}  0m  0s{color} | {color:blue} Docker mode activated. {color} |
| {color:blue}0{color} | {color:blue} patch {color} | {color:blue}  0m  1s{color} | {color:blue} The patch file was not named according to hadoop's naming conventions. Please see https://wiki.apache.org/hadoop/HowToContribute for instructions. {color} |
| {color:red}-1{color} | {color:red} patch {color} | {color:red}  0m  5s{color} | {color:red} HADOOP-15180 does not apply to trunk. Rebase required? Wrong Branch? See https://wiki.apache.org/hadoop/HowToContribute for help. {color} |
\\
\\
|| Subsystem || Report/Notes ||
| JIRA Issue | HADOOP-15180 |
| JIRA Patch URL | https://issues.apache.org/jira/secure/attachment/12911382/HADOOP-15180_branch-2.diff |
| Console output | https://builds.apache.org/job/PreCommit-HADOOP-Build/14179/console |
| Powered by | Apache Yetus 0.8.0-SNAPSHOT   http://yetus.apache.org |


This message was automatically generated.



> branch-2 : daemon processes' sysout overwrites 'ulimit -a' in daemon's out file
> -------------------------------------------------------------------------------
>
>                 Key: HADOOP-15180
>                 URL: https://issues.apache.org/jira/browse/HADOOP-15180
>             Project: Hadoop Common
>          Issue Type: Bug
>    Affects Versions: 2.7.2
>            Reporter: Ranith Sardar
>            Assignee: Ranith Sardar
>            Priority: Minor
>         Attachments: HADOOP-15180_branch-2.diff
>
>
> Whenever the balancer starts, it will redirect the sys out to the out log file.  And balancer writes the system output to the log file, at the same time  script also will try to append ulimit output. 
> {noformat}
>  # capture the ulimit output
>     if [ "true" = "$starting_secure_dn" ]; then
>       echo "ulimit -a for secure datanode user $HADOOP_SECURE_DN_USER" >> $log
>       # capture the ulimit info for the appropriate user
>       su --shell=/bin/bash $HADOOP_SECURE_DN_USER -c 'ulimit -a' >> $log 2>&1
>     elif [ "true" = "$starting_privileged_nfs" ]; then
>         echo "ulimit -a for privileged nfs user $HADOOP_PRIVILEGED_NFS_USER" >> $log
>         su --shell=/bin/bash $HADOOP_PRIVILEGED_NFS_USER -c 'ulimit -a' >> $log 2>&1
>     else
>       echo "ulimit -a for user $USER" >> $log
>       ulimit -a >> $log 2>&1
>     fi
>     sleep 3;
>     if ! ps -p $! > /dev/null ; then
>       exit 1
>     fi
> {noformat}
> But the problem is first few lines of ulimit is overridding by the log of balancer.
> {noformat}
> vm1:/opt/install/hadoop/namenode/sbin # cat /opt/HA/AIH283/install/hadoop/namenode/logs/hadoop-root-balancer-vm1.out
> Time Stamp               Iteration#  Bytes Already Moved  Bytes Left To Move  Bytes Being Moved
> The cluster is balanced. Exiting...
> Jan 9, 2018 6:26:26 PM            0                  0 B                 0 B                0 B
> Jan 9, 2018 6:26:26 PM   Balancing took 3.446 seconds
> x memory size         (kbytes, -m) 13428300
> open files                      (-n) 1024
> pipe size            (512 bytes, -p) 8
> POSIX message queues     (bytes, -q) 819200
> real-time priority              (-r) 0
> stack size              (kbytes, -s) 8192
> cpu time               (seconds, -t) unlimited
> max user processes              (-u) 127350
> virtual memory          (kbytes, -v) 15992160
> file locks                      (-x) unlimited
> {noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-issues-help@hadoop.apache.org