Uploaded image for project: 'HBase'
  1. HBase
  2. HBASE-6710

0.92/0.94 compatibility issues due to HBASE-5206

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Critical
    • Resolution: Fixed
    • None
    • 0.94.2
    • None
    • None
    • Reviewed
    • Hide
      This issue introduces a compatibility mode on the HMaster for 0.92.0 and 0.92.1 clients. Without the compatibility mode, 0.92.0 and 0.92.1 clients will hang on calls to "enableTable" and "is_enabled" will always return false, even for enabled tables. To use the compatibility mode, 0.92.0 and 0.92.1 clients require a restart with the following configuration change:
      <name>zookeeper.znode.tableEnableDisable</name>
      <value>table92</value>
      In rare failure cases, even with the compatibility mode on, the client may report incorrect results for "is_enabled" and "is_disabled." For example, "is_enabled" may return true even though the table is disabled (the correct value can be checked via the HMaster UI). This issue can be corrected by calling "enable" or "disable" to return the table to the desired state.
      Show
      This issue introduces a compatibility mode on the HMaster for 0.92.0 and 0.92.1 clients. Without the compatibility mode, 0.92.0 and 0.92.1 clients will hang on calls to "enableTable" and "is_enabled" will always return false, even for enabled tables. To use the compatibility mode, 0.92.0 and 0.92.1 clients require a restart with the following configuration change: <name>zookeeper.znode.tableEnableDisable</name> <value>table92</value> In rare failure cases, even with the compatibility mode on, the client may report incorrect results for "is_enabled" and "is_disabled." For example, "is_enabled" may return true even though the table is disabled (the correct value can be checked via the HMaster UI). This issue can be corrected by calling "enable" or "disable" to return the table to the desired state.

    Description

      HBASE-5206 introduces some compatibility issues between

      {0.94,0.94.1}

      and

      {0.92.0,0.92.1}. The release notes of HBASE-5155 describes the issue (HBASE-5206 is a backport of HBASE-5155).

      I think we can make 0.94.2 compatible with both {0.94.0,0.94.1} and {0.92.0,0.92.1}

      , although one of those sets will require configuration changes.

      The basic problem is that there is a znode for each table "zookeeper.znode.tableEnableDisable" that is handled differently.

      On 0.92.0 and 0.92.1 the states for this table are:
      [ disabled, disabling, enabling ] or deleted if the table is enabled

      On 0.94.1 and 0.94.2 the states for this table are:
      [ disabled, disabling, enabling, enabled ]

      What saves us is that the location of this znode is configurable. So the basic idea is to have the 0.94.2 master write two different znodes, "zookeeper.znode.tableEnableDisabled92" and "zookeeper.znode.tableEnableDisabled94" where the 92 node is in 92 format, the 94 node is in 94 format. And internally, the master would only use the 94 format in order to solve the original bug HBASE-5155 solves.
      We can of course make one of these the same default as exists now, so we don't need to make config changes for one of 0.92 or 0.94 clients. I argue that 0.92 clients shouldn't have to make config changes for the same reason I argued above. But that is debatable.

      Then, I think the only question left is the question of how to bring along the

      {0.94.0, 0.94.1} crew. A {0.94.0, 0.94.1}

      client would work against a 0.94.2 cluster by just configuring "zookeeper.znode.tableEnableDisable" in the client to be whatever "zookeeper.znode.tableEnableDisabled94" is in the cluster. A 0.94.2 client would work against both a

      {0.94.0, 0.94.1} and {0.92.0, 0.92.1} cluster if it had HBASE-6268 applied. About rolling upgrade from {0.94.0, 0.94.1}

      to 0.94.2 – I'd have to think about that. Do the regionservers ever read the tableEnableDisabled znode?

      On the mailing list, Lars H suggested the following:
      "The only input I'd have is that format we'll use going forward will not have a version attached to it.
      So maybe the 92 version would still be called "zookeeper.znode.tableEnableDisable" and the new node could have a different name "zookeeper.znode.tableEnableDisableNew" (or something)."

      Attachments

        1. HBASE-6710-v3.patch
          35 kB
          Gregory Chanan

        Issue Links

          Activity

            People

              gchanan Gregory Chanan
              gchanan Gregory Chanan
              Votes:
              0 Vote for this issue
              Watchers:
              9 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: