You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Duo Zhang (JIRA)" <ji...@apache.org> on 2017/11/11 13:15:00 UTC

[jira] [Created] (HBASE-19242) Add MOB compact support for AsyncAdmin

Duo Zhang created HBASE-19242:
---------------------------------

             Summary: Add MOB compact support for AsyncAdmin
                 Key: HBASE-19242
                 URL: https://issues.apache.org/jira/browse/HBASE-19242
             Project: HBase
          Issue Type: Task
          Components: Admin, mob
            Reporter: Duo Zhang
            Priority: Blocker
             Fix For: 2.0.0-beta-1


{code}
  private CompletableFuture<Void> compact(TableName tableName, byte[] columnFamily, boolean major,
      CompactType compactType) {
    if (CompactType.MOB.equals(compactType)) {
      // TODO support MOB compact.
      return failedFuture(new UnsupportedOperationException("MOB compact does not support"));
    }
{code}

We need to support it.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)