You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2015/03/28 01:04:52 UTC

[01/19] incubator-kylin git commit: updated kylin.sh

Repository: incubator-kylin
Updated Branches:
  refs/heads/staging 6f1d30fca -> 23f0dae95


updated kylin.sh 

I was gettiing   out of memory  errors for   joins  with this configuration its working fine at lest for all quries I have tested on a sample cube build on 2 million data .

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

Branch: refs/heads/staging
Commit: 9497073618af1e375a094b8b69552fc34ccaecd1
Parents: b6a2bd0
Author: vipin kumar <vi...@gmail.com>
Authored: Tue Mar 10 11:36:30 2015 +0530
Committer: vipin kumar <vi...@gmail.com>
Committed: Tue Mar 10 11:36:30 2015 +0530

----------------------------------------------------------------------
 bin/kylin.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/94970736/bin/kylin.sh
----------------------------------------------------------------------
diff --git a/bin/kylin.sh b/bin/kylin.sh
index 7981bb8..fa500a3 100644
--- a/bin/kylin.sh
+++ b/bin/kylin.sh
@@ -35,8 +35,9 @@ then
 
     export HBASE_CLASSPATH_PREFIX=${tomcat_root}/bin/bootstrap.jar:${tomcat_root}/bin/tomcat-juli.jar:${tomcat_root}/lib/*:$HBASE_CLASSPATH_PREFIX
     export HBASE_CLASSPATH=$hive_dependency:${HBASE_CLASSPATH}
+    export  JAVA_OPTS="-Xms2048M -Xmx2048M"
 
-    hbase -Djava.util.logging.config.file=${tomcat_root}/conf/logging.properties \
+    hbase ${JAVA_OPTS}  -Djava.util.logging.config.file=${tomcat_root}/conf/logging.properties \
     -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager \
     -Dorg.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true \
     -Dorg.apache.catalina.connector.CoyoteAdapter.ALLOW_BACKSLASH=true \
@@ -76,4 +77,4 @@ then
 else
     echo "usage: kylin.sh start or kylin.sh stop"
     exit 1
-fi
\ No newline at end of file
+fi


[19/19] incubator-kylin git commit: refine how to contribute doc

Posted by li...@apache.org.
refine how to contribute doc


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

Branch: refs/heads/staging
Commit: 23f0dae956750b46b9b4de07aa1bc4164293b057
Parents: b876b7a
Author: Yang Li <li...@apache.org>
Authored: Sat Mar 28 01:02:51 2015 +0100
Committer: Yang Li <li...@apache.org>
Committed: Sat Mar 28 01:02:51 2015 +0100

----------------------------------------------------------------------
 docs/MISC/How to Contribute.md | 43 ++++++++++++++++---------------------
 1 file changed, 19 insertions(+), 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/23f0dae9/docs/MISC/How to Contribute.md
----------------------------------------------------------------------
diff --git a/docs/MISC/How to Contribute.md b/docs/MISC/How to Contribute.md
index e270606..90c9732 100644
--- a/docs/MISC/How to Contribute.md	
+++ b/docs/MISC/How to Contribute.md	
@@ -1,41 +1,36 @@
 #### Setup Dev Env
-* subscribe our developers' mail list via <de...@kylin.incubator.apache.org>
-* Fork on [GitHub](https://github.com/KylinOLAP)
+* Subscribe our developers' mail list via <de...@kylin.incubator.apache.org>
+* Fork from [GitHub](https://github.com/apache/incubator-kylin) *staging* branch, it is the bug fix branch of master.
 * ...
 
 #### Making Changes
-* Raise an issue on GitHub, describe the feature/enhancement/bug
-* Discuss with others in google group or issue comments, make sure the proposed changes fit in with what others are doing and have planned for the project
-* Make changes in your fork
-* Write unit test if no existing cover your change
-* Push to GitHub under your fork
+* Discuss feature/enhancement/bug you plan to do in dev mail list, get consensus before you start.
+* Create a [JIRA](https://issues.apache.org/jira/browse/KYLIN) to describe your task
+* Make changes in your fork.
+* Write unit test to cover your change.
 
 
 #### Contribute The Work
-* Raise a pull request on GitHub, include both **code** and **test**, link with **related issue**
-* Committer will review in terms of correctness, performance, design, coding style, test coverage
-* Discuss and revise if necessary
-* Finally committer merge code into main branch
+* Pull request to *staging* branch.
+* Committer review in terms of correctness, performance, design, coding style, test coverage.
+* Discuss and revise if necessary.
+* Committer merge code into *staging*.
+* After integration test, change merges into master.
 
 
 #### Wish List
-Some potential work items
+Some work items for new joiners.
 * Query Engine
-  * Cache generated class, reduce delay into ms level and avoid full GC triggered by perm generation
-  * [Issue #14](https://github.com/KylinOLAP/Kylin/issues/14) Derive meaningful cost in OLAP relational operator
-  * [Issue #15](https://github.com/KylinOLAP/Kylin/issues/15) Implement multi-column distinct count
-* Metadata
-  * [Issue #7](https://github.com/KylinOLAP/Kylin/issues/7) Merge multiple hbase tables
+  * Cache Calcite generated class, reduce delay into ms level and avoid full GC triggered by perm generation
+  * [KYLIN-491](https://issues.apache.org/jira/browse/KYLIN-491) Derive meaningful cost in OLAP relational operator
 * Job Engine
-  * [Issue #16](https://github.com/KylinOLAP/Kylin/issues/16) Tune HDFS & HBase parameters
-  * [Issue #17](https://github.com/KylinOLAP/Kylin/issues/17) Increase HDFS block size 1GB or close
-  * Shell command to support kill operation
-  * Use DoubleDouble instead of BigDecimal during cube build
-  * Drop quartz dependency, assess the cost/benefit first
-  * Cardinality run as one step job, allows progress tracking
+  * [KYLIN-489](https://issues.apache.org/jira/browse/KYLIN-489) Tune HDFS & HBase parameters. Requires a hadoop cluster of 10+ nodes.
+  * Fork some build step (build dictionary, create hbase table) as child process, better resource cleanup and easier troubleshooting.
+  * Use DoubleDouble instead of BigDecimal during cube build. Expect better CPU performance.
 * ODBC/JDBC
   * Test Kylin remote JDBC with java report tools
-  * Implement ODBC async mode, fetching from Kylin and feeding to client in parallel
+  * [KYLIN-602](https://issues.apache.org/jira/browse/KYLIN-602) ODBC driver support excel
+  * Implement ODBC async mode, streaming from Kylin and feeding to client
 * Benchmark
   * [Issue #18](https://github.com/KylinOLAP/Kylin/issues/18) Benchmark on standard dataset
 


[10/19] incubator-kylin git commit: Merge branch 'master' of https://github.com/KylinOLAP/Kylin

Posted by li...@apache.org.
Merge branch 'master' of https://github.com/KylinOLAP/Kylin


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

Branch: refs/heads/staging
Commit: b1b3fad2038de10b3ca75a5c95ade65535ec8082
Parents: 014ef83 a74b911
Author: liyang@apache.org <ya...@D-SHC-00801746.corp.ebay.com>
Authored: Thu Mar 19 15:31:19 2015 +0100
Committer: liyang@apache.org <ya...@D-SHC-00801746.corp.ebay.com>
Committed: Thu Mar 19 15:31:19 2015 +0100

----------------------------------------------------------------------
 bin/kylin.sh                   | 5 +++--
 docs/website/download/index.md | 5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------



[04/19] incubator-kylin git commit: Merge branch 'staging'

Posted by li...@apache.org.
Merge branch 'staging'


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

Branch: refs/heads/staging
Commit: 43b843aa337fe371c55c4837cfd3527ab5299da6
Parents: 2efaf25 4f6869e
Author: lukehan <lu...@apache.org>
Authored: Mon Mar 16 12:30:14 2015 -0700
Committer: lukehan <lu...@apache.org>
Committed: Mon Mar 16 12:30:14 2015 -0700

----------------------------------------------------------------------
 bin/check-env.sh                                |     7 +-
 bin/kylin.sh                                    |     2 +-
 bin/sample.sh                                   |    11 +
 .../kylin/common/restclient/Broadcaster.java    |     4 +-
 conf/kylin.properties                           |     2 +-
 .../apache/kylin/dict/DateStrDictionary.java    |    18 +-
 .../kylin/dict/DateStrDictionaryTest.java       |    27 +
 docs/Installation/install_and_run.md            |    23 +-
 examples/sample_cube/create_sample_tables.sql   |   172 +
 .../sample_cube/data/DEFAULT.KYLIN_CAL_DT.csv   |   731 ++
 .../data/DEFAULT.KYLIN_CATEGORY_GROUPINGS.csv   |   144 +
 .../sample_cube/data/DEFAULT.KYLIN_SALES.csv    | 10000 +++++++++++++++++
 .../metadata/cube/kylin_sales_cube.json         |    10 +
 .../cube_desc/kylin_sales_cube_desc.json        |   178 +
 .../metadata/model_desc/kylin_sales_model.json  |    28 +
 .../metadata/project/learn_kylin.json           |    11 +
 .../metadata/table/DEFAULT.KYLIN_CAL_DT.json    |   407 +
 .../table/DEFAULT.KYLIN_CATEGORY_GROUPINGS.json |   151 +
 .../metadata/table/DEFAULT.KYLIN_SALES.json     |    43 +
 .../test_case_data/sandbox/kylin.properties     |     2 +-
 .../kylin/metadata/project/ProjectManager.java  |     2 +-
 script/compress.sh                              |     2 +-
 script/prepare.sh                               |     2 +
 .../apache/kylin/rest/service/BasicService.java |     2 +-
 .../apache/kylin/rest/service/CacheService.java |    24 +
 .../org/apache/kylin/storage/tuple/Tuple.java   |     4 +-
 webapp/app/js/services/cache.js                 |     2 +-
 27 files changed, 11985 insertions(+), 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/43b843aa/bin/kylin.sh
----------------------------------------------------------------------


[18/19] incubator-kylin git commit: Merge branch 'master' into staging

Posted by li...@apache.org.
Merge branch 'master' into staging


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

Branch: refs/heads/staging
Commit: b876b7ad5dfdf5479b49f4c6200efd4c3fd1228e
Parents: c573b07 92ff93e
Author: liyang@apache.org <ya...@D-SHC-00801746.corp.ebay.com>
Authored: Fri Mar 27 03:36:25 2015 +0100
Committer: liyang@apache.org <ya...@D-SHC-00801746.corp.ebay.com>
Committed: Fri Mar 27 03:36:25 2015 +0100

----------------------------------------------------------------------
 bin/kylin.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------



[07/19] incubator-kylin git commit: update website title to Apache Kylin

Posted by li...@apache.org.
update website title to Apache Kylin


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

Branch: refs/heads/staging
Commit: 13d791a581ac9ab34265711c40eb74cd4190ad92
Parents: d4ee587
Author: lukehan <lu...@apache.org>
Authored: Mon Mar 16 13:37:33 2015 -0700
Committer: lukehan <lu...@apache.org>
Committed: Mon Mar 16 13:37:33 2015 -0700

----------------------------------------------------------------------
 docs/website/_includes/head.cn.html | 4 ++--
 docs/website/_includes/head.html    | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/13d791a5/docs/website/_includes/head.cn.html
----------------------------------------------------------------------
diff --git a/docs/website/_includes/head.cn.html b/docs/website/_includes/head.cn.html
index ae98dee..7e4f3f7 100644
--- a/docs/website/_includes/head.cn.html
+++ b/docs/website/_includes/head.cn.html
@@ -3,9 +3,9 @@
   <meta http-equiv="X-UA-Compatible" content="IE=edge">
   <meta name="viewport" content="width=device-width, initial-scale=1">
 
-  <title>Kylin.IO | {% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
+  <title>Apache Kylin | {% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
   <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
-  <meta name="author"      content="Kylin.IO">
+  <meta name="author"      content="Apache Kylin">
   <link rel="shortcut icon" href="fav.png" type="image/png">
 
 

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/13d791a5/docs/website/_includes/head.html
----------------------------------------------------------------------
diff --git a/docs/website/_includes/head.html b/docs/website/_includes/head.html
index ae98dee..7e4f3f7 100644
--- a/docs/website/_includes/head.html
+++ b/docs/website/_includes/head.html
@@ -3,9 +3,9 @@
   <meta http-equiv="X-UA-Compatible" content="IE=edge">
   <meta name="viewport" content="width=device-width, initial-scale=1">
 
-  <title>Kylin.IO | {% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
+  <title>Apache Kylin | {% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
   <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
-  <meta name="author"      content="Kylin.IO">
+  <meta name="author"      content="Apache Kylin">
   <link rel="shortcut icon" href="fav.png" type="image/png">
 
 


[02/19] incubator-kylin git commit: Merge pull request #444 from vipinkumar7/patch-1

Posted by li...@apache.org.
Merge pull request #444 from vipinkumar7/patch-1

updated kylin.sh

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

Branch: refs/heads/staging
Commit: e66e92af5390e43a68956ef7c308d20c83a49ce1
Parents: b6a2bd0 9497073
Author: qianhao.zhou <qi...@ebay.com>
Authored: Tue Mar 10 14:12:58 2015 +0800
Committer: qianhao.zhou <qi...@ebay.com>
Committed: Tue Mar 10 14:12:58 2015 +0800

----------------------------------------------------------------------
 bin/kylin.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------



[17/19] incubator-kylin git commit: Merge pull request #450 from IT-DONG/staging

Posted by li...@apache.org.
Merge pull request #450 from IT-DONG/staging

change "! -eq" syntax to "!=" since we compare string instead of a number

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

Branch: refs/heads/staging
Commit: c573b07448b6aea2c56dd5573ef400f971a031b8
Parents: cac1589 df0123b
Author: qianhao.zhou <qi...@ebay.com>
Authored: Thu Mar 26 10:15:45 2015 +0800
Committer: qianhao.zhou <qi...@ebay.com>
Committed: Thu Mar 26 10:15:45 2015 +0800

----------------------------------------------------------------------
 job/pom.xml               | 27 ++++++++++++---------------
 script/download-tomcat.sh |  4 ++--
 2 files changed, 14 insertions(+), 17 deletions(-)
----------------------------------------------------------------------



[13/19] incubator-kylin git commit: update binary package with commit 6f1d30fcab48fd02e18f91386b41c12bfd188178

Posted by li...@apache.org.
update binary package with commit 6f1d30fcab48fd02e18f91386b41c12bfd188178


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

Branch: refs/heads/staging
Commit: cac1589c639e53d3d3b65f64dccb043a57de463a
Parents: f9e3a6a
Author: lukehan <lu...@apache.org>
Authored: Tue Mar 24 18:17:25 2015 -0700
Committer: lukehan <lu...@apache.org>
Committed: Tue Mar 24 18:17:25 2015 -0700

----------------------------------------------------------------------
 docs/website/download/index.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/cac1589c/docs/website/download/index.md
----------------------------------------------------------------------
diff --git a/docs/website/download/index.md b/docs/website/download/index.md
index 9718e8b..a2cc3e5 100644
--- a/docs/website/download/index.md
+++ b/docs/website/download/index.md
@@ -15,8 +15,8 @@ title: Community
 
               <p class="big_text">Binary Package (v0.7.x)</p>
               <p><a href="http://kylin.incubator.apache.org/download/kylin-0.7.1-SNAPSHOT.tgz" target="_blank">v0.7.1-SNAPSHOT (Dev Build)</a> 
-              <br/>Updated Date - March 16, 2015 <br/>	
-              <br/>Git Commit: <a href="https://github.com/KylinOLAP/Kylin/tree/4f6869e1f1f6b2ed22e6d3b638a4048905d27e49" target="_blank">4f6869e</a>						
+              <br/>Updated Date - March 24, 2015 <br/>	
+              <br/>Git Commit: <a href="https://github.com/KylinOLAP/Kylin/tree/6f1d30fcab48fd02e18f91386b41c12bfd188178" target="_blank">6f1d30f</a>						
 							</p>
             </div>
 


[03/19] incubator-kylin git commit: Merge branch 'master' of https://github.com/KylinOLAP/Kylin

Posted by li...@apache.org.
Merge branch 'master' of https://github.com/KylinOLAP/Kylin


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

Branch: refs/heads/staging
Commit: 2efaf25dfab25e3e22e33383223241702a3f5300
Parents: 54dc31f e66e92a
Author: lukehan <lu...@apache.org>
Authored: Wed Mar 11 17:41:08 2015 -0700
Committer: lukehan <lu...@apache.org>
Committed: Wed Mar 11 17:41:08 2015 -0700

----------------------------------------------------------------------
 bin/kylin.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------



[08/19] incubator-kylin git commit: update ga tracking settings

Posted by li...@apache.org.
update ga tracking settings


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

Branch: refs/heads/staging
Commit: 3625d536764f6ac6c0121a592b37e6378bd2f9f4
Parents: 13d791a
Author: lukehan <lu...@apache.org>
Authored: Mon Mar 16 13:49:00 2015 -0700
Committer: lukehan <lu...@apache.org>
Committed: Mon Mar 16 13:49:00 2015 -0700

----------------------------------------------------------------------
 docs/website/_includes/head.cn.html | 6 ++++++
 docs/website/_includes/head.html    | 5 +++++
 2 files changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/3625d536/docs/website/_includes/head.cn.html
----------------------------------------------------------------------
diff --git a/docs/website/_includes/head.cn.html b/docs/website/_includes/head.cn.html
index 7e4f3f7..bb8a7e8 100644
--- a/docs/website/_includes/head.cn.html
+++ b/docs/website/_includes/head.cn.html
@@ -33,8 +33,14 @@
   m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
   })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
 
+
+  //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
+  //new tracker for kylin.incubator.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+
   ga('send', 'pageview');
+  ga('incubator.send', 'pageview');
 
 
 </script>

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/3625d536/docs/website/_includes/head.html
----------------------------------------------------------------------
diff --git a/docs/website/_includes/head.html b/docs/website/_includes/head.html
index 7e4f3f7..7c005ee 100644
--- a/docs/website/_includes/head.html
+++ b/docs/website/_includes/head.html
@@ -33,8 +33,13 @@
   m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
   })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
 
+  //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
+  //new tracker for kylin.incubator.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+
   ga('send', 'pageview');
+  ga('incubator.send', 'pageview');
 
 
 </script>


[05/19] incubator-kylin git commit: Update binary package with commit: 4f6869e1f1f6b2ed22e6d3b638a4048905d27e49

Posted by li...@apache.org.
Update binary package with commit: 4f6869e1f1f6b2ed22e6d3b638a4048905d27e49


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

Branch: refs/heads/staging
Commit: d4ee5874d3fd04d83db9ede7947d744f77f55194
Parents: 4f6869e
Author: lukehan <lu...@apache.org>
Authored: Mon Mar 16 12:32:06 2015 -0700
Committer: lukehan <lu...@apache.org>
Committed: Mon Mar 16 12:32:06 2015 -0700

----------------------------------------------------------------------
 docs/website/download/index.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/d4ee5874/docs/website/download/index.md
----------------------------------------------------------------------
diff --git a/docs/website/download/index.md b/docs/website/download/index.md
index 4fc10c8..9718e8b 100644
--- a/docs/website/download/index.md
+++ b/docs/website/download/index.md
@@ -14,8 +14,9 @@ title: Community
             <div class="col-sm-4 col-md-4">
 
               <p class="big_text">Binary Package (v0.7.x)</p>
-              <p><a href="http://kylin.incubator.apache.org/download/kylin-0.7.1-SNAPSHOT.tgz" target="_blank">v0.7.1-SNAPSHOT</a> 
-              <br/>Updated Date - March 9, 2015 <br/>							
+              <p><a href="http://kylin.incubator.apache.org/download/kylin-0.7.1-SNAPSHOT.tgz" target="_blank">v0.7.1-SNAPSHOT (Dev Build)</a> 
+              <br/>Updated Date - March 16, 2015 <br/>	
+              <br/>Git Commit: <a href="https://github.com/KylinOLAP/Kylin/tree/4f6869e1f1f6b2ed22e6d3b638a4048905d27e49" target="_blank">4f6869e</a>						
 							</p>
             </div>
 


[12/19] incubator-kylin git commit: merge conflict

Posted by li...@apache.org.
merge conflict


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

Branch: refs/heads/staging
Commit: b6a85cfcb29eebe9cc3e7c0b065fabec5c935d9f
Parents: a74b911 f9e3a6a
Author: lukehan <lu...@apache.org>
Authored: Tue Mar 24 18:14:58 2015 -0700
Committer: lukehan <lu...@apache.org>
Committed: Tue Mar 24 18:14:58 2015 -0700

----------------------------------------------------------------------
 README.md                                       |   88 +-
 bin/kylin.sh                                    |   16 +-
 bin/setenv.sh                                   |   36 +
 .../common/util/HBaseMiniclusterHelper.java     |    2 +-
 .../java/org/apache/kylin/cube/CubeManager.java |   50 +-
 .../org/apache/kylin/cube/model/CubeDesc.java   |    4 +
 ...requently Asked Questions on Installation.md |   26 -
 ...equently Asked Questions on Installation.pdf |  Bin 52261 -> 0 bytes
 docs/Installation/Hadoop Environment.md         |   21 +
 .../How to generate install binaries.md         |    6 +
 docs/Installation/Installation.md               |   38 +
 .../Installation/Multiple Kylin REST servers.md |    9 +
 ...f Hadoop CLI Installation (Dev Env Setup).md |   76 -
 ... Hadoop CLI Installation (Dev Env Setup).pdf |  Bin 44909 -> 0 bytes
 .../Installation/Off Hadoop CLI Installation.md |   67 +
 docs/Installation/On Hadoop CLI installation.md |  106 +-
 .../Installation/On Hadoop CLI installation.pdf |  Bin 704398 -> 0 bytes
 ...On Hadoop Kylin installation using Docker.md |    2 +-
 ...n Hadoop Kylin installation using Docker.pdf |  Bin 40098 -> 0 bytes
 docs/Installation/install_and_run.md            |   83 -
 docs/Installation/off_cli_install_scene.png     |  Bin 0 -> 72567 bytes
 docs/Installation/on_cli_install_scene.png      |  Bin 0 -> 53722 bytes
 docs/JobEngine/Design.md                        |    2 +-
 .../MISC/FAQ on Kylin Installation and Usage.md |   43 +
 docs/MISC/How to Contribute.md                  |   42 +
 docs/MISC/Kylin Document Conventions.md         |    9 +
 .../Advanced settings of Kylin environment.md   |   28 +
 docs/Operations/Export Kylin HBase data.md      |   19 +
 docs/Operations/Kylin Metadata Store.md         |   31 +
 docs/README.md                                  |    0
 docs/REST/Build Cube with Restful API.md        |   51 +
 ...w to consume Kylin REST API in javascript.md |   42 +
 docs/REST/Kylin Restful API List.md             | 2020 ++++++++++++++++++
 .../TechInside/New meta data model structure.md |   18 +
 ...n Kylin test case with HBase Mini Cluster.md |   15 +
 .../How to use kylin remote jdbc driver.md      |   87 +
 ...in Cube Build and Job Monitoring Tutorial.md |   10 +-
 ...n Cube Build and Job Monitoring Tutorial.pdf |  Bin 1054988 -> 0 bytes
 docs/Tutorial/Kylin Cube Creation Tutorial.md   |    9 +-
 docs/Tutorial/Kylin Cube Creation Tutorial.pdf  |  Bin 1488946 -> 0 bytes
 .../Kylin Cube Permission Grant Tutorial.pdf    |  Bin 358047 -> 0 bytes
 docs/Tutorial/Kylin ODBC Driver Tutorial.md     |    6 +
 docs/Tutorial/Kylin ODBC Driver Tutorial.pdf    |  Bin 34429 -> 0 bytes
 docs/Tutorial/Kylin Web Tutorial.md             |    8 +-
 docs/Tutorial/Kylin Web Tutorial.pdf            |  Bin 1714951 -> 0 bytes
 docs/Tutorial/Kylin and Excel Tutorial.md       |    3 +
 docs/Tutorial/Kylin and Tableau Tutorial.md     |    6 +-
 docs/Tutorial/Kylin and Tableau Tutorial.pdf    |  Bin 1246553 -> 0 bytes
 docs/Tutorial/Quick play with a sample cube.md  |   20 +
 docs/website/_includes/head.cn.html             |   10 +-
 docs/website/_includes/head.html                |    9 +-
 .../minicluster/b-kylin/kylin.properties        |    2 +-
 .../minicluster/b-kylin/meta/kylin.properties   |    2 +-
 .../test_case_data/minicluster/kylin.properties |    2 +-
 .../org/apache/kylin/jdbc/stub/KylinClient.java |    8 +-
 .../org/apache/kylin/job/JoinedFlatTable.java   |   46 +-
 .../kylin/job/hadoop/AbstractHadoopJob.java     |    3 +-
 .../hadoop/hive/CubeJoinedFlatTableDesc.java    |   29 -
 .../job/hadoop/hive/IIJoinedFlatTableDesc.java  |   20 -
 .../job/hadoop/hive/IJoinedFlatTableDesc.java   |    5 -
 .../kylin/job/tools/CubeMigrationCLI.java       |    4 +-
 .../job/hadoop/cube/BaseCuboidJobTest.java      |    3 +
 .../job/hadoop/cube/MergeCuboidJobTest.java     |    4 +-
 .../kylin/job/hadoop/cube/NDCuboidJobTest.java  |    4 +-
 .../cube/RangeKeyDistributionJobTest.java       |    4 +-
 .../kylin/metadata/project/ProjectL2Cache.java  |   27 +-
 pom.xml                                         |    4 +
 query/src/test/resources/query/sql/query78.sql  |    4 +
 .../apache/kylin/rest/service/JobService.java   |  110 +-
 .../kylin/storage/hbase/CubeStorageEngine.java  |   15 +-
 webapp/app/js/controllers/cubes.js              |    2 +-
 webapp/app/partials/query/query_detail.html     |    2 +-
 72 files changed, 2886 insertions(+), 532 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/b6a85cfc/bin/kylin.sh
----------------------------------------------------------------------
diff --cc bin/kylin.sh
index f8db9e5,232feef..bffe37f
--- a/bin/kylin.sh
+++ b/bin/kylin.sh
@@@ -35,9 -34,9 +34,10 @@@ the
  
      export HBASE_CLASSPATH_PREFIX=${tomcat_root}/bin/bootstrap.jar:${tomcat_root}/bin/tomcat-juli.jar:${tomcat_root}/lib/*:$HBASE_CLASSPATH_PREFIX
      export HBASE_CLASSPATH=$hive_dependency:${HBASE_CLASSPATH}
 +    export  JAVA_OPTS="-Xms2048M -Xmx2048M"
  
-     hbase ${JAVA_OPTS}  -Djava.util.logging.config.file=${tomcat_root}/conf/logging.properties \
+     hbase ${KYLIN_EXTRA_START_OPTS} \
+     -Djava.util.logging.config.file=${tomcat_root}/conf/logging.properties \
      -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager \
      -Dorg.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true \
      -Dorg.apache.catalina.connector.CoyoteAdapter.ALLOW_BACKSLASH=true \


[11/19] incubator-kylin git commit: Merge branch 'staging' of https://github.com/KylinOLAP/Kylin into staging

Posted by li...@apache.org.
Merge branch 'staging' of https://github.com/KylinOLAP/Kylin into staging


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

Branch: refs/heads/staging
Commit: f9e3a6a07e0ed5e5abb03a95bdd2112383fadf9a
Parents: 3625d53 6f1d30f
Author: lukehan <lu...@apache.org>
Authored: Tue Mar 24 18:09:16 2015 -0700
Committer: lukehan <lu...@apache.org>
Committed: Tue Mar 24 18:09:16 2015 -0700

----------------------------------------------------------------------
 README.md                                       |   88 +-
 bin/kylin.sh                                    |   16 +-
 bin/setenv.sh                                   |   36 +
 .../common/util/HBaseMiniclusterHelper.java     |    2 +-
 .../java/org/apache/kylin/cube/CubeManager.java |   50 +-
 .../org/apache/kylin/cube/model/CubeDesc.java   |    4 +
 ...requently Asked Questions on Installation.md |   26 -
 ...equently Asked Questions on Installation.pdf |  Bin 52261 -> 0 bytes
 docs/Installation/Hadoop Environment.md         |   21 +
 .../How to generate install binaries.md         |    6 +
 docs/Installation/Installation.md               |   38 +
 .../Installation/Multiple Kylin REST servers.md |    9 +
 ...f Hadoop CLI Installation (Dev Env Setup).md |   76 -
 ... Hadoop CLI Installation (Dev Env Setup).pdf |  Bin 44909 -> 0 bytes
 .../Installation/Off Hadoop CLI Installation.md |   67 +
 docs/Installation/On Hadoop CLI installation.md |  106 +-
 .../Installation/On Hadoop CLI installation.pdf |  Bin 704398 -> 0 bytes
 ...On Hadoop Kylin installation using Docker.md |    2 +-
 ...n Hadoop Kylin installation using Docker.pdf |  Bin 40098 -> 0 bytes
 docs/Installation/install_and_run.md            |   83 -
 docs/Installation/off_cli_install_scene.png     |  Bin 0 -> 72567 bytes
 docs/Installation/on_cli_install_scene.png      |  Bin 0 -> 53722 bytes
 docs/JobEngine/Design.md                        |    2 +-
 .../MISC/FAQ on Kylin Installation and Usage.md |   43 +
 docs/MISC/How to Contribute.md                  |   42 +
 docs/MISC/Kylin Document Conventions.md         |    9 +
 .../Advanced settings of Kylin environment.md   |   28 +
 docs/Operations/Export Kylin HBase data.md      |   19 +
 docs/Operations/Kylin Metadata Store.md         |   31 +
 docs/README.md                                  |    0
 docs/REST/Build Cube with Restful API.md        |   51 +
 ...w to consume Kylin REST API in javascript.md |   42 +
 docs/REST/Kylin Restful API List.md             | 2020 ++++++++++++++++++
 .../TechInside/New meta data model structure.md |   18 +
 ...n Kylin test case with HBase Mini Cluster.md |   15 +
 .../How to use kylin remote jdbc driver.md      |   87 +
 ...in Cube Build and Job Monitoring Tutorial.md |   10 +-
 ...n Cube Build and Job Monitoring Tutorial.pdf |  Bin 1054988 -> 0 bytes
 docs/Tutorial/Kylin Cube Creation Tutorial.md   |    9 +-
 docs/Tutorial/Kylin Cube Creation Tutorial.pdf  |  Bin 1488946 -> 0 bytes
 .../Kylin Cube Permission Grant Tutorial.pdf    |  Bin 358047 -> 0 bytes
 docs/Tutorial/Kylin ODBC Driver Tutorial.md     |    6 +
 docs/Tutorial/Kylin ODBC Driver Tutorial.pdf    |  Bin 34429 -> 0 bytes
 docs/Tutorial/Kylin Web Tutorial.md             |    8 +-
 docs/Tutorial/Kylin Web Tutorial.pdf            |  Bin 1714951 -> 0 bytes
 docs/Tutorial/Kylin and Excel Tutorial.md       |    3 +
 docs/Tutorial/Kylin and Tableau Tutorial.md     |    6 +-
 docs/Tutorial/Kylin and Tableau Tutorial.pdf    |  Bin 1246553 -> 0 bytes
 docs/Tutorial/Quick play with a sample cube.md  |   20 +
 .../minicluster/b-kylin/kylin.properties        |    2 +-
 .../minicluster/b-kylin/meta/kylin.properties   |    2 +-
 .../test_case_data/minicluster/kylin.properties |    2 +-
 .../org/apache/kylin/jdbc/stub/KylinClient.java |    8 +-
 .../org/apache/kylin/job/JoinedFlatTable.java   |   46 +-
 .../kylin/job/hadoop/AbstractHadoopJob.java     |    3 +-
 .../hadoop/hive/CubeJoinedFlatTableDesc.java    |   29 -
 .../job/hadoop/hive/IIJoinedFlatTableDesc.java  |   20 -
 .../job/hadoop/hive/IJoinedFlatTableDesc.java   |    5 -
 .../kylin/job/tools/CubeMigrationCLI.java       |    4 +-
 .../job/hadoop/cube/BaseCuboidJobTest.java      |    3 +
 .../job/hadoop/cube/MergeCuboidJobTest.java     |    4 +-
 .../kylin/job/hadoop/cube/NDCuboidJobTest.java  |    4 +-
 .../cube/RangeKeyDistributionJobTest.java       |    4 +-
 .../kylin/metadata/project/ProjectL2Cache.java  |   27 +-
 pom.xml                                         |    4 +
 query/src/test/resources/query/sql/query78.sql  |    4 +
 .../apache/kylin/rest/service/JobService.java   |  110 +-
 .../kylin/storage/hbase/CubeStorageEngine.java  |   15 +-
 webapp/app/js/controllers/cubes.js              |    2 +-
 webapp/app/partials/query/query_detail.html     |    2 +-
 70 files changed, 2871 insertions(+), 528 deletions(-)
----------------------------------------------------------------------



[14/19] incubator-kylin git commit: Merge branch 'master' of https://github.com/KylinOLAP/Kylin

Posted by li...@apache.org.
Merge branch 'master' of https://github.com/KylinOLAP/Kylin


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

Branch: refs/heads/staging
Commit: ced5962bdad0bdef5552e2cc5eb755709aea9940
Parents: b6a85cf b1b3fad
Author: lukehan <lu...@apache.org>
Authored: Tue Mar 24 18:19:09 2015 -0700
Committer: lukehan <lu...@apache.org>
Committed: Tue Mar 24 18:19:09 2015 -0700

----------------------------------------------------------------------

----------------------------------------------------------------------



[09/19] incubator-kylin git commit: change "! -eq" syntax to "!=" since we compare string instead of a number

Posted by li...@apache.org.
change "! -eq" syntax to "!=" since we compare string instead of a number

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

Branch: refs/heads/staging
Commit: 05b0b1a833793856bacf53bec4ecb56b51a951f2
Parents: 0170668
Author: IT-DONG <wa...@sina.cn>
Authored: Wed Mar 18 18:54:35 2015 +0800
Committer: IT-DONG <wa...@sina.cn>
Committed: Wed Mar 18 18:54:35 2015 +0800

----------------------------------------------------------------------
 script/download-tomcat.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/05b0b1a8/script/download-tomcat.sh
----------------------------------------------------------------------
diff --git a/script/download-tomcat.sh b/script/download-tomcat.sh
index 1751541..77be1bf 100755
--- a/script/download-tomcat.sh
+++ b/script/download-tomcat.sh
@@ -10,7 +10,7 @@ then
     echo "not binary file found"
     wget http://mirror.sdunix.com/apache/tomcat/tomcat-7/v7.0.59/bin/apache-tomcat-7.0.59.tar.gz || echo "download tomcat failed"
 else
-    if [ ! `md5sum apache-tomcat-7.0.59.tar.gz | awk '{print $1}'` -eq "ec570258976edf9a833cd88fd9220909" ]
+    if [ `md5sum apache-tomcat-7.0.59.tar.gz | awk '{print $1}'` != "ec570258976edf9a833cd88fd9220909" ]
     then
         echo "md5 check failed"
         rm apache-tomcat-7.0.59.tar.gz
@@ -24,4 +24,4 @@ rm -rf tomcat/webapps/*
 
 mv tomcat/conf/server.xml tomcat/conf/server.xml.bak
 cp deploy/server.xml tomcat/conf/server.xml
-echo "server.xml overwritten..."
\ No newline at end of file
+echo "server.xml overwritten..."


[15/19] incubator-kylin git commit: Merge branch 'staging'

Posted by li...@apache.org.
Merge branch 'staging'


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

Branch: refs/heads/staging
Commit: 92ff93e22cdf3b50a613430fa403a8046535ae6a
Parents: ced5962 cac1589
Author: lukehan <lu...@apache.org>
Authored: Tue Mar 24 18:19:17 2015 -0700
Committer: lukehan <lu...@apache.org>
Committed: Tue Mar 24 18:19:17 2015 -0700

----------------------------------------------------------------------
 docs/website/download/index.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------



[16/19] incubator-kylin git commit: to prevent from generating *.RSA, *.SF, *.DSA, the fix for kylin issue 621

Posted by li...@apache.org.
to prevent from generating *.RSA, *.SF, *.DSA, the fix for kylin issue 621

to prevent from generating *.RSA, *.SF, *.DSA, the fix for kylin issue 621

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

Branch: refs/heads/staging
Commit: df0123bc84263580334469dc420e96a7700b90de
Parents: 05b0b1a
Author: IT-DONG <wa...@sina.cn>
Authored: Wed Mar 25 18:42:09 2015 +0800
Committer: IT-DONG <wa...@sina.cn>
Committed: Wed Mar 25 18:42:09 2015 +0800

----------------------------------------------------------------------
 job/pom.xml | 27 ++++++++++++---------------
 1 file changed, 12 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/df0123bc/job/pom.xml
----------------------------------------------------------------------
diff --git a/job/pom.xml b/job/pom.xml
index 1fff5af..bfc73bb 100644
--- a/job/pom.xml
+++ b/job/pom.xml
@@ -261,24 +261,21 @@
                         </goals>
                         <configuration>
                             <minimizeJar>false</minimizeJar>
+                            <shadedArtifactAttached>true</shadedArtifactAttached>
+                            <shadedClassifierName>job</shadedClassifierName>
+                            <filters>
+                                <filter>
+                                    <artifact>*:*</artifact>
+                                    <excludes>
+                                        <exclude>META-INF/*.SF</exclude>
+                                        <exclude>META-INF/*.DSA</exclude>
+                                        <exclude>META-INF/*.RSA</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
                         </configuration>
                     </execution>
                 </executions>
-
-                <configuration>
-                    <shadedArtifactAttached>true</shadedArtifactAttached>
-                    <shadedClassifierName>job</shadedClassifierName>
-                    <filters>
-                        <filter>
-                            <excludes>
-                                <exclude>META-INF/*.SF</exclude>
-                                <exclude>META-INF/*.DSA</exclude>
-                                <exclude>META-INF/*.RSA</exclude>
-                            </excludes>
-                        </filter>
-                    </filters>
-                </configuration>
-
             </plugin>
         </plugins>
     </build>


[06/19] incubator-kylin git commit: Merge branch 'staging'

Posted by li...@apache.org.
Merge branch 'staging'


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

Branch: refs/heads/staging
Commit: a74b911d5572bbee124cce7d987e0cf0b3557d6d
Parents: 43b843a d4ee587
Author: lukehan <lu...@apache.org>
Authored: Mon Mar 16 12:32:25 2015 -0700
Committer: lukehan <lu...@apache.org>
Committed: Mon Mar 16 12:32:25 2015 -0700

----------------------------------------------------------------------
 docs/website/download/index.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------