You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "Steve Loughran (JIRA)" <ji...@apache.org> on 2009/08/20 15:47:14 UTC

[jira] Created: (HDFS-554) BlockInfo.ensureCapacity may get a speedup from System.arraycopy()

BlockInfo.ensureCapacity may get a speedup from System.arraycopy()
------------------------------------------------------------------

                 Key: HDFS-554
                 URL: https://issues.apache.org/jira/browse/HDFS-554
             Project: Hadoop HDFS
          Issue Type: Improvement
          Components: name-node
    Affects Versions: 0.21.0
            Reporter: Steve Loughran
            Priority: Minor


BlockInfo.ensureCapacity() uses a for() loop to copy the old array data into the expanded array.  {{System.arraycopy()}} is generally much faster for this, as it can do a bulk memory copy. There is also the typesafe Java6 {{Arrays.copyOf()}} to consider, though here it offers no tangible benefit.

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