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

Jing Zhao commented on HDFS-5496:
---------------------------------

bq. if (!isInSafeMode() && haEnabled) will fail to detect the need to restart 
the initialization.

How about changing this to 
{code}
if (!isInSafeMode() || ((isInSafeMode() && safeMode.isPopulatingReplQueues()) 
&& haEnabled))
{code}
I.e., in non-HA setup, maybe we do not need to restart the processing since the 
NN already loads all the editlog before entering safemode?

And in checkMode(), can we change 
{code}
      if (canInitializeReplQueues() && !isPopulatingReplQueues()) {
        initializeReplQueues();
      }
{code}
to
{code}
      if (canInitializeReplQueues() && !isPopulatingReplQueues() && !haEnabled) 
{
        initializeReplQueues();
      }
{code}
because in HA setup we will run processMisReplicateBlocks in startActiveService.

> Make replication queue initialization asynchronous
> --------------------------------------------------
>
>                 Key: HDFS-5496
>                 URL: https://issues.apache.org/jira/browse/HDFS-5496
>             Project: Hadoop HDFS
>          Issue Type: Sub-task
>          Components: namenode
>            Reporter: Kihwal Lee
>            Assignee: Vinay
>         Attachments: HDFS-5496.patch, HDFS-5496.patch
>
>
> Today, initialization of replication queues blocks safe mode exit and certain 
> HA state transitions. For a big name space, this can take hundreds of seconds 
> with the FSNamesystem write lock held.  During this time, important requests 
> (e.g. initial block reports, heartbeat, etc) are blocked.
> The effect of delaying the initialization would be not starting replication 
> right away, but I think the benefit outweighs. If we make it asynchronous, 
> the work per iteration should be limited, so that the lock duration is 
> capped. 
> If full/incremental block reports and any other requests that modifies block 
> state properly performs replication checks while the blocks are scanned and 
> the queues populated in background, every block will be processed. (Some may 
> be done twice)  The replication monitor should run even before all blocks are 
> processed.
> This will allow namenode to exit safe mode and start serving immediately even 
> with a big name space. It will also reduce the HA failover latency.



--
This message was sent by Atlassian JIRA
(v6.1.4#6159)

Reply via email to