You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Hairong Kuang (JIRA)" <ji...@apache.org> on 2010/04/29 02:37:50 UTC

[jira] Created: (HADOOP-6732) Improve FsShell's heap consumption by switching to listStatus that returns an iterator

Improve FsShell's heap consumption by switching to listStatus that returns an iterator
--------------------------------------------------------------------------------------

                 Key: HADOOP-6732
                 URL: https://issues.apache.org/jira/browse/HADOOP-6732
             Project: Hadoop Common
          Issue Type: Improvement
            Reporter: Hairong Kuang
             Fix For: 0.22.0


When listing a large directory from the command line using the default heap configuration, FsShell often runs out of memory. This is because all stats of the entries under the directory need to be in memory before printing them. The new API listStatus that returns an iterator of FileStatus, which implemented in HDFS-1091, no longer requires that all entries are fetched first. Thus switching to this new API will greatly improve the use of heap space.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.