[
https://issues.apache.org/jira/browse/HADOOP-10724?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16000648#comment-16000648
]
Michael DeGuzis commented on HADOOP-10724:
------------------------------------------
Until this hits a hadoop release / resolved, you can use this workaround:
{code}
sudo -u hdfs hadoop fs -du -h -s /user/* | sed 's/ //' | sort -h
{code}
Passing the output to sed first resolves this issue in the meantime.
> `hadoop fs -du -h` incorrectly formatted
> ----------------------------------------
>
> Key: HADOOP-10724
> URL: https://issues.apache.org/jira/browse/HADOOP-10724
> Project: Hadoop Common
> Issue Type: Bug
> Components: fs
> Affects Versions: 3.0.0-alpha1
> Reporter: Sam Steingold
> Assignee: Sam Steingold
> Attachments:
> 0001-HADOOP-10724-do-not-insert-a-space-between-number-an.patch
>
>
> {{hadoop fs -du -h}} prints sizes with a space between the number and the
> unit:
> {code}
> $ hadoop fs -du -h .....
> 91.7 G ....
> 583.1 M ....
> 97.6 K .....
> {code}
> The standard unix {{du -h}} does not:
> {code}
> $ du -h
> 400K ...
> 404K ....
> 480K .....
> {code}
> the result is that the output of {{du -h}} is properly sorted by {{sort -h}}
> while the output of {{hadoop fs -du -h}} is *not* properly sorted by it.
> Please see
> * [sort|http://linux.die.net/man/1/sort]: "-h --human-numeric-sort
> compare human readable numbers (e.g., 2K 1G) "
> * [du|http://linux.die.net/man/1/du]: "-h, --human-readable
> print sizes in human readable format (e.g., 1K 234M 2G) "
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]