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

Protobuf interface for Admin: split between the internal and the external/customer interface

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Not A Problem
    • 0.95.2
    • None
    • Client, master, regionserver
    • None

    Description

      After a short discussion with Stack, I create a jira.

      I'am a little bit confused by the protobuf interface for closeRegion.

      We have two types of closeRegion today:
      1) the external ones; available in client.HBaseAdmin. They take the server and the region identifier as a parameter and nothing else.
      2) The internal ones, called for example by the master. They have more parameters (like versionOfClosingNode or transitionInZK).

      When I look at protobuf.ProtobufUtil, I see:

      public static void closeRegion(final AdminProtocol admin,
      final byte[] regionName, final boolean transitionInZK) throws IOException {
      CloseRegionRequest closeRegionRequest =
      RequestConverter.buildCloseRegionRequest(regionName, transitionInZK);
      try

      { admin.closeRegion(null, closeRegionRequest); }

      catch (ServiceException se)

      { throw getRemoteException(se); }

      }

      In other words, it seems that we merged the two interfaces into a single one. Is that the intend?
      I checked, the internal fields in closeRegionRequest are all optional (that's good). Still, it means that the end user could use them or at least would need to distinguish between the "optional for functional reasons" and the "optional - do not use".

      Attachments

        Activity

          People

            Unassigned Unassigned
            nkeywal Nicolas Liochon
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: