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 "dhruba borthakur (JIRA)" <ji...@apache.org> on 2011/01/30 09:05:44 UTC

[jira] Created: (HDFS-1605) Convert DFSInputStream synchronized sections to a ReadWrite lock

Convert DFSInputStream synchronized sections to a ReadWrite lock
----------------------------------------------------------------

                 Key: HDFS-1605
                 URL: https://issues.apache.org/jira/browse/HDFS-1605
             Project: Hadoop HDFS
          Issue Type: Improvement
          Components: hdfs client
            Reporter: dhruba borthakur
            Assignee: dhruba borthakur


Hbase does concurrent preads from multiple threads to different blocks of the same hdfs file. Each of these pread calls invoke DFSInputStream.getFileLength() and DFSInputStream.getBlockAt(). These methods are "synchronized", thus causing all the concurrent threads to serialize. It would help performance to convert this to a Read/Write lock

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