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

HBaseAdmin addColumn, modifyColumn, deleteColumn are documented as asynchronous but are actually synchronous.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Not A Problem
    • 0.94.0
    • None
    • Client, master
    • None
    • all

    Description

      The javadoc states is asynchronous, but we can see in the implementation on HMaster that the implementation does not use executorService but calls directly process(). This is not true for all methods: enableTable, modifyTable, disableTable are truly asynchronous.

      The other impact is that the listeners are not called, as this is done by the executorService.

      I don't known if we have to change the documentation or the implementation. For consistency; I would change the implementation, but it may breaks existing code.

      Two other comments:
      1) There is no real naming pattern here, while it would be useful:
      HBaseAdmin#createTable is synchrounous and calls the asynchronous HMaster#createTable
      HBaseAdmin#createTableAsync is asynchrounous and calls the asynchronous HMaster#createTable
      HBaseAdmin#modifyTable is asynchrounous and calls the asynchronous HMaster#modifyTable
      HBaseAdmin#modifyColumn is documented as asynchrounous and calls the synchronous HMaster#modifyColumn

      2) the coprocessor "post" semantic is not consistent across the services.

      • when the service is synchronous, post is called after the services execution (ex: addColumn with the current implementation).
      • when the service is asynchronous, post is called after the executorService has registered the service to execute, but the service itself is not executed yet.

      Attachments

        Issue Links

          Activity

            People

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

              Dates

                Created:
                Updated:
                Resolved: