Github user adityakishore commented on a diff in the pull request: https://github.com/apache/drill/pull/443#discussion_r57376985 --- Diff: contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/config/HBasePersistentStore.java --- @@ -25,36 +25,40 @@ import java.util.Map.Entry; import java.util.NoSuchElementException; -import com.google.common.collect.Iterators; import org.apache.drill.common.exceptions.DrillRuntimeException; import org.apache.drill.exec.store.sys.BasePersistentStore; import org.apache.drill.exec.store.sys.PersistentStoreConfig; import org.apache.drill.exec.store.sys.PersistentStoreMode; import org.apache.hadoop.hbase.client.Delete; import org.apache.hadoop.hbase.client.Get; -import org.apache.hadoop.hbase.client.HTableInterface; import org.apache.hadoop.hbase.client.Put; import org.apache.hadoop.hbase.client.Result; import org.apache.hadoop.hbase.client.ResultScanner; import org.apache.hadoop.hbase.client.Scan; +import org.apache.hadoop.hbase.client.Table; import org.apache.hadoop.hbase.util.Bytes; +import com.google.common.collect.Iterators; + public class HBasePersistentStore<V> extends BasePersistentStore<V> { --- End diff -- Do you mean getting rid of HBase persistent store altogether?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---