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

Incompatible tag renumbering in HeartbeatResponseProto

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Blocker
    • Resolution: Fixed
    • 2.8.0
    • 2.8.0, 3.0.0-alpha1
    • rolling upgrades
    • None

    Description

      The HDFS-9426 patches for branch-2.7 and branch-2 used different tag numbers for rollingUpgradeStatusV2 in HeartbeatResponseProto:

      trunk/branch-2:

      message HeartbeatResponseProto {
        repeated DatanodeCommandProto cmds = 1; // Returned commands can be null
        required NNHAStatusHeartbeatProto haStatus = 2;
        optional RollingUpgradeStatusProto rollingUpgradeStatus = 3;
        optional uint64 fullBlockReportLeaseId = 4 [ default = 0 ];
        optional RollingUpgradeStatusProto rollingUpgradeStatusV2 = 5;
      }
      

      branch-2.7:

      message HeartbeatResponseProto {
        repeated DatanodeCommandProto cmds = 1; // Returned commands can be null
        required NNHAStatusHeartbeatProto haStatus = 2;
        optional RollingUpgradeStatusProto rollingUpgradeStatus = 3;
        optional RollingUpgradeStatusProto rollingUpgradeStatusV2 = 4;
      }
      

      This breaks rolling upgrade between 2.7 and a future 2.8. We need to renumber the tags to preserve wire compatibility.

      Attachments

        1. HDFS-9788.001.patch
          0.8 kB
          Andrew Wang

        Activity

          People

            andrew.wang Andrew Wang
            andrew.wang Andrew Wang
            Votes:
            0 Vote for this issue
            Watchers:
            8 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: