You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2016/07/09 01:15:16 UTC

[1/2] kylin git commit: KYLIN-1862 "table not found" in "Build Dimension Dictionary" step

Repository: kylin
Updated Branches:
  refs/heads/v1.5.3-release 854ec376c -> b999eac8f


KYLIN-1862 "table not found" in "Build Dimension Dictionary" step

Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/687d5933
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/687d5933
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/687d5933

Branch: refs/heads/v1.5.3-release
Commit: 687d5933a91139d900c8544fcf74abf6c6dae0ee
Parents: 854ec37
Author: shaofengshi <sh...@apache.org>
Authored: Fri Jul 8 22:30:52 2016 +0800
Committer: shaofengshi <sh...@apache.org>
Committed: Fri Jul 8 22:30:52 2016 +0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/kylin/dict/DictionaryManager.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/687d5933/core-dictionary/src/main/java/org/apache/kylin/dict/DictionaryManager.java
----------------------------------------------------------------------
diff --git a/core-dictionary/src/main/java/org/apache/kylin/dict/DictionaryManager.java b/core-dictionary/src/main/java/org/apache/kylin/dict/DictionaryManager.java
index 74120dc..bd00f10 100644
--- a/core-dictionary/src/main/java/org/apache/kylin/dict/DictionaryManager.java
+++ b/core-dictionary/src/main/java/org/apache/kylin/dict/DictionaryManager.java
@@ -290,9 +290,9 @@ public class DictionaryManager {
             MetadataManager metadataManager = MetadataManager.getInstance(config);
             TableDesc tableDesc = new TableDesc(metadataManager.getTableDesc(srcTable));
             if (TableDesc.TABLE_TYPE_VIRTUAL_VIEW.equalsIgnoreCase(tableDesc.getTableType())) {
-                tableDesc.setDatabase(config.getHiveDatabaseForIntermediateTable());
-                String tableName = tableDesc.getMaterializedName();
-                tableDesc.setName(tableName);
+                TableDesc materializedTbl = new TableDesc();
+                materializedTbl.setDatabase(config.getHiveDatabaseForIntermediateTable());
+                materializedTbl.setName(tableDesc.getMaterializedName());
                 inpTable = SourceFactory.createReadableTable(tableDesc);
             } else {
                 inpTable = SourceFactory.createReadableTable(tableDesc);


[2/2] kylin git commit: KYLIN-1861 change default “hive.auto.convert.join.noconditionaltask.size” to 100Mb

Posted by sh...@apache.org.
KYLIN-1861 change default \u201chive.auto.convert.join.noconditionaltask.size\u201d to 100Mb

Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/b999eac8
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/b999eac8
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/b999eac8

Branch: refs/heads/v1.5.3-release
Commit: b999eac8fa77ebf7e6bd3b65d71654aaab24544e
Parents: 687d593
Author: shaofengshi <sh...@apache.org>
Authored: Sat Jul 9 09:14:55 2016 +0800
Committer: shaofengshi <sh...@apache.org>
Committed: Sat Jul 9 09:14:55 2016 +0800

----------------------------------------------------------------------
 build/conf/kylin_hive_conf.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/b999eac8/build/conf/kylin_hive_conf.xml
----------------------------------------------------------------------
diff --git a/build/conf/kylin_hive_conf.xml b/build/conf/kylin_hive_conf.xml
index b95c077..3d6109b 100644
--- a/build/conf/kylin_hive_conf.xml
+++ b/build/conf/kylin_hive_conf.xml
@@ -35,7 +35,7 @@
 
     <property>
         <name>hive.auto.convert.join.noconditionaltask.size</name>
-        <value>300000000</value>
+        <value>100000000</value>
         <description>enable map-side join</description>
     </property>