Revert "KYLIN-2846 minor fix of htable name case issue" This reverts commit b3d908986e8c7e545eac9749ee6c8291be415b5a.
Project: http://git-wip-us.apache.org/repos/asf/kylin/repo Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/44a37be7 Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/44a37be7 Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/44a37be7 Branch: refs/heads/ranger Commit: 44a37be7c27cdefd66d1b1917b4df3d805dc2b49 Parents: b3d9089 Author: Li Yang <liy...@apache.org> Authored: Fri Sep 15 15:30:08 2017 +0800 Committer: Li Yang <liy...@apache.org> Committed: Fri Sep 15 15:30:08 2017 +0800 ---------------------------------------------------------------------- .../java/org/apache/kylin/storage/hbase/steps/CubeHFileJob.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kylin/blob/44a37be7/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/CubeHFileJob.java ---------------------------------------------------------------------- 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 7a583ca..9f9b382 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 @@ -92,7 +92,7 @@ public class CubeHFileJob extends AbstractHadoopJob { attachCubeMetadata(cube, job.getConfiguration()); Configuration hbaseConf = HBaseConfiguration.create(getConf()); - HTable htable = new HTable(hbaseConf, getOptionValue(OPTION_HTABLE_NAME)); + HTable htable = new HTable(hbaseConf, getOptionValue(OPTION_HTABLE_NAME).toUpperCase()); // Automatic config ! HFileOutputFormat.configureIncrementalLoad(job, htable);