This is an automated email from the ASF dual-hosted git repository.
xxyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kylin.git
The following commit(s) were added to refs/heads/master by this push:
new 2c70819 KYLIN-4578 TableNotFoundException is thrown when
kylin.storage.hbase.table-name-prefix is set to lowercase
2c70819 is described below
commit 2c7081968de14ec24e3bfb4d9140a74e405a4738
Author: Guangxu Cheng <[email protected]>
AuthorDate: Mon Jun 22 16:20:24 2020 +0800
KYLIN-4578 TableNotFoundException is thrown when
kylin.storage.hbase.table-name-prefix is set to lowercase
---
.../main/java/org/apache/kylin/storage/hbase/steps/CubeHFileJob.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git
a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/CubeHFileJob.java
b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/CubeHFileJob.java
index e403c20..3217d75 100644
---
a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/CubeHFileJob.java
+++
b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/CubeHFileJob.java
@@ -22,7 +22,6 @@ import static
org.apache.hadoop.hbase.HBaseConfiguration.merge;
import java.io.IOException;
import java.util.Collection;
-import java.util.Locale;
import org.apache.commons.cli.Options;
import org.apache.hadoop.conf.Configuration;
@@ -98,7 +97,7 @@ public class CubeHFileJob extends AbstractHadoopJob {
// construct configuration for the HBase cluster
Configuration hbaseConf =
HBaseConnection.getCurrentHBaseConfiguration();
- HTable htable = new HTable(hbaseConf,
getOptionValue(OPTION_HTABLE_NAME).toUpperCase(Locale.ROOT));
+ HTable htable = new HTable(hbaseConf,
getOptionValue(OPTION_HTABLE_NAME));
// Automatic config !
HFileOutputFormat3.configureIncrementalLoad(job, htable);