Uploaded image for project: 'Hadoop HDFS'
  1. Hadoop HDFS
  2. HDFS-14314

fullBlockReportLeaseId should be reset after registering to NN

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Critical
    • Resolution: Fixed
    • 2.8.4
    • 2.10.0, 3.0.4, 3.3.0, 3.2.1, 2.9.3, 3.1.3
    • datanode
    • None
    •  

       

       

    Description

            since HDFS-7923 ,to rate-limit DN block report, DN will ask for a full block lease id from active NN before sending full block to NN. Then DN will send full block report together with lease id. If the lease id is invalid, NN will reject the full block report and log "not in the pending set".

            In a case when DN is doing full block reporting while NN is restarted. It happens that DN will later send a full block report with lease id ,acquired from previous NN instance, which is invalid to the new NN instance. Though DN recognized the new NN instance by heartbeat and reregister itself, it did not reset the lease id from previous instance.

            The issuse may cause DNs to temporarily go dead, making it unsafe to restart NN especially in hadoop cluster which has large amount of DNs. HDFS-12914 reported the issue  without any clues why it occurred and remain unsolved.

             To make it clear, look at code below. We take it from method offerService of class BPServiceActor. We eliminate some code to focus on current issue. fullBlockReportLeaseId is a local variable to hold lease id from NN. Exceptions will occur at blockReport call when NN restarting, which will be caught by catch block in while loop. Thus fullBlockReportLeaseId will not be set to 0. After NN restarted, DN will send full block report which will be rejected by the new NN instance. DN will never send full block report until the next full block report schedule, about an hour later.

            Solution is simple, just reset fullBlockReportLeaseId to 0 after any exception or after registering to NN. Thus it will ask for a valid fullBlockReportLeaseId from new NN instance.

      private void offerService() throws Exception {
      
        long fullBlockReportLeaseId = 0;
      
        //
        // Now loop for a long time....
        //
        while (shouldRun()) {
          try {
            final long startTime = scheduler.monotonicNow();
      
            //
            // Every so often, send heartbeat or block-report
            //
            final boolean sendHeartbeat = scheduler.isHeartbeatDue(startTime);
            HeartbeatResponse resp = null;
            if (sendHeartbeat) {
            
              boolean requestBlockReportLease = (fullBlockReportLeaseId == 0) &&
                      scheduler.isBlockReportDue(startTime);
              scheduler.scheduleNextHeartbeat();
              if (!dn.areHeartbeatsDisabledForTests()) {
                resp = sendHeartBeat(requestBlockReportLease);
                assert resp != null;
                if (resp.getFullBlockReportLeaseId() != 0) {
                  if (fullBlockReportLeaseId != 0) {
                    LOG.warn(nnAddr + " sent back a full block report lease " +
                            "ID of 0x" +
                            Long.toHexString(resp.getFullBlockReportLeaseId()) +
                            ", but we already have a lease ID of 0x" +
                            Long.toHexString(fullBlockReportLeaseId) + ". " +
                            "Overwriting old lease ID.");
                  }
                  fullBlockReportLeaseId = resp.getFullBlockReportLeaseId();
                }
               
              }
            }
         
           
            if ((fullBlockReportLeaseId != 0) || forceFullBr) {
              //Exception occurred here when NN restarting
              cmds = blockReport(fullBlockReportLeaseId);
              fullBlockReportLeaseId = 0;
            }
            
          } catch(RemoteException re) {
            
        } // while (shouldRun())
      } // offerService

       

      Attachments

        1. HDFS-14314.0.patch
          2 kB
          star
        2. HDFS-14314.2.patch
          8 kB
          star
        3. HDFS-14314.branch-2.001.patch
          9 kB
          Wei-Chiu Chuang
        4. HDFS-14314.patch
          2 kB
          star
        5. HDFS-14314-branch-2.8.001.patch
          9 kB
          star
        6. HDFS-14314-trunk.001.patch
          8 kB
          star
        7. HDFS-14314-trunk.001.patch
          8 kB
          star
        8. HDFS-14314-trunk.002.patch
          9 kB
          star
        9. HDFS-14314-trunk.003.patch
          9 kB
          star
        10. HDFS-14314-trunk.004.patch
          9 kB
          star
        11. HDFS-14314-trunk.005.patch
          9 kB
          star
        12. HDFS-14314-trunk.006.patch
          9 kB
          star

        Issue Links

          Activity

            People

              starphin star
              starphin star
              Votes:
              0 Vote for this issue
              Watchers:
              9 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: