Repository: kylin Updated Branches: refs/heads/document b68aa9a2f -> 0951b201d
release 1.5.3 Project: http://git-wip-us.apache.org/repos/asf/kylin/repo Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/0951b201 Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/0951b201 Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/0951b201 Branch: refs/heads/document Commit: 0951b201d28756aa24892eb1342eb0bb8af49d8a Parents: b68aa9a Author: shaofengshi <shaofeng...@apache.org> Authored: Thu Jul 28 22:48:08 2016 +0800 Committer: shaofengshi <shaofeng...@apache.org> Committed: Thu Jul 28 22:48:08 2016 +0800 ---------------------------------------------------------------------- website/_docs15/howto/howto_cleanup_storage.md | 2 +- website/_docs15/howto/howto_jdbc.md | 4 +- website/_docs15/howto/howto_upgrade.md | 15 ++- website/_docs15/release_notes.md | 97 ++++++++++++++++++++ .../_posts/blog/2016-07-28-release-v1.5.3.cn.md | 46 ++++++++++ .../_posts/blog/2016-07-28-release-v1.5.3.md | 47 ++++++++++ website/download/index.cn.md | 22 ++--- website/download/index.md | 20 ++-- 8 files changed, 227 insertions(+), 26 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kylin/blob/0951b201/website/_docs15/howto/howto_cleanup_storage.md ---------------------------------------------------------------------- diff --git a/website/_docs15/howto/howto_cleanup_storage.md b/website/_docs15/howto/howto_cleanup_storage.md index f04a05f..00cd1ec 100644 --- a/website/_docs15/howto/howto_cleanup_storage.md +++ b/website/_docs15/howto/howto_cleanup_storage.md @@ -1,6 +1,6 @@ --- layout: docs15 -title: Cleanup Storage (HDFS & HBase Tables) +title: Cleanup Storage (HDFS & HBase) categories: howto permalink: /docs15/howto/howto_cleanup_storage.html --- http://git-wip-us.apache.org/repos/asf/kylin/blob/0951b201/website/_docs15/howto/howto_jdbc.md ---------------------------------------------------------------------- diff --git a/website/_docs15/howto/howto_jdbc.md b/website/_docs15/howto/howto_jdbc.md index 0c8e11e..4a925e2 100644 --- a/website/_docs15/howto/howto_jdbc.md +++ b/website/_docs15/howto/howto_jdbc.md @@ -1,13 +1,13 @@ --- layout: docs15 -title: Use kylin Remote JDBC Driver +title: Use JDBC Driver categories: howto permalink: /docs15/howto/howto_jdbc.html --- ### Authentication -###### Build on kylin authentication restful service. Supported parameters: +###### Build on Apache Kylin authentication restful service. Supported parameters: * user : username * password : password * ssl: true/false. Default be false; If true, all the services call will use https. http://git-wip-us.apache.org/repos/asf/kylin/blob/0951b201/website/_docs15/howto/howto_upgrade.md ---------------------------------------------------------------------- diff --git a/website/_docs15/howto/howto_upgrade.md b/website/_docs15/howto/howto_upgrade.md index 2cd0a44..637158e 100644 --- a/website/_docs15/howto/howto_upgrade.md +++ b/website/_docs15/howto/howto_upgrade.md @@ -1,18 +1,29 @@ --- layout: docs15 -title: Upgrade from old versions +title: Upgrade From Old Versions categories: howto permalink: /docs15/howto/howto_upgrade.html since: v1.5.1 --- + +## Upgrade from 1.5.2 to v1.5.3 +Kylin v1.5.3 metadata is compitible with v1.5.2, your cubes don't need rebuilt, as usual, some actions need to be performed: + +#### 1. Update HBase coprocessor +The HBase tables for existing cubes need be updated to the latest coprocessor; Follow [this guide](howto_update_coprocessor.html) to update; + +#### 2. Update conf/kylin_hive_conf.xml +From 1.5.3, Kylin doesn't need Hive to merge small files anymore; For users who copy the conf/ from previous version, please remove the "merge" related properties in kylin_hive_conf.xml, including "hive.merge.mapfiles", "hive.merge.mapredfiles", and "hive.merge.size.per.task"; this will save the time on extracting data from Hive. + + ## Upgrade from 1.5.1 to v1.5.2 Kylin v1.5.2 metadata is compitible with v1.5.1, your cubes don't need upgrade, while some actions need to be performed: #### 1. Update HBase coprocessor The HBase tables for existing cubes need be updated to the latest coprocessor; Follow [this guide](howto_update_coprocessor.html) to update; -#### 2. Update kylin.properties +#### 2. Update conf/kylin.properties In v1.5.2 several properties are deprecated, and several new one are added: Deprecated: http://git-wip-us.apache.org/repos/asf/kylin/blob/0951b201/website/_docs15/release_notes.md ---------------------------------------------------------------------- diff --git a/website/_docs15/release_notes.md b/website/_docs15/release_notes.md index 19094be..99da031 100644 --- a/website/_docs15/release_notes.md +++ b/website/_docs15/release_notes.md @@ -15,6 +15,103 @@ or send to Apache Kylin mailing list: * User relative: [u...@kylin.apache.org](mailto:u...@kylin.apache.org) * Development relative: [d...@kylin.apache.org](mailto:d...@kylin.apache.org) +## v1.5.3 - 2016-07-28 +_Tag:_ [kylin-1.5.3](https://github.com/apache/kylin/tree/kylin-1.5.3) +This version includes many bug fixs/enhancements as well as new features; It is backward compatiple with v1.5.2; But after upgrade, you need to update coprocessor, refer to [How to update coprocessor](/docs15/howto/howto_update_coprocessor.html). + +__New Feature__ + +[KYLIN-1478] - TopN measure should support non-dictionary encoding for ultra high cardinality +[KYLIN-1693] - Support multiple group-by columns for TOP_N meausre +[KYLIN-1752] - Add an option to fail cube build job when source table is empty +[KYLIN-1756] - Allow user to run MR jobs against different Hadoop queues + +__Bug__ + +[KYLIN-1499] - Couldn't save query, error in backend +[KYLIN-1568] - Calculate row value buffer size instead of hard coded ROWVALUE_BUFFER_SIZE +[KYLIN-1645] - Exception inside coprocessor should report back to the query thread +[KYLIN-1646] - Column appeared twice if it was declared as both dimension and measure +[KYLIN-1676] - High CPU in TrieDictionary due to incorrect use of HashMap +[KYLIN-1679] - bin/get-properties.sh cannot get property which contains space or equals sign +[KYLIN-1684] - query on table "kylin_sales" return empty resultset after cube "kylin_sales_cube" which generated by sample.sh is ready +[KYLIN-1694] - make multiply coefficient configurable when estimating cuboid size +[KYLIN-1695] - Skip cardinality calculation job when loading hive table +[KYLIN-1703] - The not-thread-safe ToolRunner.run() will cause concurrency issue in job engine +[KYLIN-1704] - When load empty snapshot, NULL Pointer Exception occurs +[KYLIN-1723] - GTAggregateScanner$Dump.flush() must not write the WHOLE metrics buffer +[KYLIN-1738] - MRJob Id is not saved to kylin jobs if MR job is killed +[KYLIN-1742] - kylin.sh should always set KYLIN_HOME to an absolute path +[KYLIN-1755] - TopN Measure IndexOutOfBoundsException +[KYLIN-1760] - Save query hits org.apache.hadoop.hbase.TableNotFoundException: kylin_metadata_user +[KYLIN-1762] - Query threw NPE with 3 or more join conditions +[KYLIN-1769] - There is no response when click "Property" button at Cube Designer +[KYLIN-1777] - Streaming cube build shouldn't check working segment +[KYLIN-1780] - Potential issue in SnapshotTable.equals() +[KYLIN-1781] - kylin.properties encoding error while contain chinese prop key or value +[KYLIN-1783] - Can't add override property at cube design 'Configuration Overwrites' step. +[KYLIN-1785] - NoSuchElementException when Mandatory Dimensions contains all Dimensions +[KYLIN-1787] - Properly deal with limit clause in CubeHBaseEndpointRPC (SELECT * problem) +[KYLIN-1788] - Allow arbitrary number of mandatory dimensions in one aggregation group +[KYLIN-1789] - Couldn't use View as Lookup when join type is "inner" +[KYLIN-1795] - bin/sample.sh doesn't work when configured hive client is beeline +[KYLIN-1800] - IllegalArgumentExceptio: Too many digits for NumberDictionary: -0.009999999999877218. Expect 19 digits before decimal point at max. +[KYLIN-1803] - ExtendedColumn Measure Encoding with Non-ascii Characters +[KYLIN-1811] - Error step may be skipped sometimes when resume a cube job +[KYLIN-1816] - More than one base KylinConfig exist in spring JVM +[KYLIN-1817] - No result from JDBC with Date filter in prepareStatement +[KYLIN-1838] - Fix sample cube definition +[KYLIN-1848] - Can't sort cubes by any field in Web UI +[KYLIN-1862] - "table not found" in "Build Dimension Dictionary" step +[KYLIN-1879] - RestAPI /api/jobs always returns 0 for exec_start_time and exec_end_time fields +[KYLIN-1882] - it report can't find the intermediate table in '#4 Step Name: Build Dimension Dictionary' when use hive view as lookup table +[KYLIN-1896] - JDBC support mybatis +[KYLIN-1905] - Wrong Default Date in Cube Build Web UI +[KYLIN-1909] - Wrong access control to rest get cubes +[KYLIN-1911] - NPE when extended column has NULL value +[KYLIN-1912] - Create Intermediate Flat Hive Table failed when using beeline +[KYLIN-1913] - query log printed abnormally if the query contains "\r" (not "\r\n") +[KYLIN-1918] - java.lang.UnsupportedOperationException when unload hive table + +__Improvement__ + +[KYLIN-1319] - Find a better way to check hadoop job status +[KYLIN-1379] - More stable and functional precise count distinct implements after KYLIN-1186 +[KYLIN-1656] - Improve performance of MRv2 engine by making each mapper handles a configured number of records +[KYLIN-1657] - Add new configuration kylin.job.mapreduce.min.reducer.number +[KYLIN-1669] - Deprecate the "Capacity" field from DataModel +[KYLIN-1677] - Distribute source data by certain columns when creating flat table +[KYLIN-1705] - Global (and more scalable) dictionary +[KYLIN-1706] - Allow cube to override MR job configuration by properties +[KYLIN-1714] - Make job/source/storage engines configurable from kylin.properties +[KYLIN-1717] - Make job engine scheduler configurable +[KYLIN-1718] - Grow ByteBuffer Dynamically in Cube Building and Query +[KYLIN-1719] - Add config in scan request to control compress the query result or not +[KYLIN-1724] - Support Amazon EMR +[KYLIN-1725] - Use KylinConfig inside coprocessor +[KYLIN-1728] - Introduce dictionary metadata +[KYLIN-1731] - allow non-admin user to edit 'Advenced Setting' step in CubeDesigner +[KYLIN-1747] - Calculate all 0 (except mandatory) cuboids +[KYLIN-1749] - Allow mandatory only cuboid +[KYLIN-1751] - Make kylin log configurable +[KYLIN-1766] - CubeTupleConverter.translateResult() is slow due to date conversion +[KYLIN-1775] - Add Cube Migrate Support for Global Dictionary +[KYLIN-1782] - API redesign for CubeDesc +[KYLIN-1786] - Frontend work for KYLIN-1313 (extended columns as measure) +[KYLIN-1792] - behaviours for non-aggregated queries +[KYLIN-1805] - It's easily got stuck when deleting HTables during running the StorageCleanupJob +[KYLIN-1815] - Cleanup package size +[KYLIN-1818] - change kafka dependency to provided +[KYLIN-1821] - Reformat all of the java files and enable checkstyle to enforce code formatting +[KYLIN-1823] - refactor kylin-server packaging +[KYLIN-1846] - minimize dependencies of JDBC driver +[KYLIN-1884] - Reload metadata automatically after migrating cube +[KYLIN-1894] - GlobalDictionary may corrupt when server suddenly crash +[KYLIN-1744] - Separate concepts of source offset and date range on cube segments +[KYLIN-1654] - Upgrade httpclient dependency +[KYLIN-1774] - Update Kylin's tomcat version to 7.0.69 +[KYLIN-1861] - Hive may fail to create flat table with "GC overhead error" + ## v1.5.2.1 - 2016-06-07 _Tag:_ [kylin-1.5.2.1](https://github.com/apache/kylin/tree/kylin-1.5.2.1) http://git-wip-us.apache.org/repos/asf/kylin/blob/0951b201/website/_posts/blog/2016-07-28-release-v1.5.3.cn.md ---------------------------------------------------------------------- diff --git a/website/_posts/blog/2016-07-28-release-v1.5.3.cn.md b/website/_posts/blog/2016-07-28-release-v1.5.3.cn.md new file mode 100644 index 0000000..6c65634 --- /dev/null +++ b/website/_posts/blog/2016-07-28-release-v1.5.3.cn.md @@ -0,0 +1,46 @@ +--- +layout: post-blog +title: Apache Kylin v1.5.3 æ£å¼åå¸ +date: 2016-07-28 21:00:00 +author: Shaofeng Shi +categories: blog +--- + +Apache Kylin社åºé常é«å ´å®£å¸Apache Kylin v1.5.3æ£å¼åå¸ã + +Apache Kylinæ¯ä¸ä¸ªå¼æºçåå¸å¼åæå¼æï¼æä¾Hadoopä¹ä¸çSQLæ¥è¯¢æ¥å£åå¤ç»´åæï¼OLAPï¼è½åä»¥æ¯æè¶ å¤§è§æ¨¡æ°æ®ï¼æåç±eBay Inc. å¼åå¹¶è´¡ç®è³å¼æºç¤¾åºã + +ä¸è½½Apache Kylin v1.5.3æºä»£ç åäºè¿å¶å®è£ å ï¼ +请访é®[ä¸è½½](http://kylin.apache.org/cn/download/)页é¢. + +è¿æ¯ä¸ä¸ªä¸»è¦ççæ¬åå¸å¸¦æ¥äºæ´ç¨³å®ï¼å¥å£®åæ´å¥½ç®¡çççæ¬ï¼Apache Kylin社åºè§£å³äº84个issueï¼å æ¬Bugä¿®å¤ï¼åè½å¢å¼ºåä¸äºæ°ç¹æ§çã + +## 主è¦åå + + - éç¨æ åAPIè·åHadoopä»»å¡çç¶æ [KYLIN-1319](https://issues.apache.org/jira/browse/KYLIN-1319) + - å ¨å±çï¼æ©å±æ§æ´å¥½çï¼åå ¸ç¼ç æ¹æ³ [KYLIN-1705](https://issues.apache.org/jira/browse/KYLIN-1705) + - æ´ç¨³å®ç精确å»é(count distinct)度é [KYLIN-1379](https://issues.apache.org/jira/browse/KYLIN-1379) + - éè¿æå®æ¯ä¸ªMapperå¤ç纪å½çæ°éï¼ä»èæé«Cubeæå»ºæ§è½ [KYLIN-1656](https://issues.apache.org/jira/browse/KYLIN-1656) + - å¨å建Hiveå¹³è¡¨æ¶ææäºåï¼UHCï¼åæ¥åæ£æ°æ® [KYLIN-1677](https://issues.apache.org/jira/browse/KYLIN-1677) + - å 许å¨Cube级å«è¦çMRä»»å¡ç屿§ [KYLIN-1706](https://issues.apache.org/jira/browse/KYLIN-1706) + - å 许é管çåç¨æ·ç¼è¾ä¿®æ¹Cubeå导çâé«çº§è®¾ç½®â页 [KYLIN-1731](https://issues.apache.org/jira/browse/KYLIN-1731) + - 计ç®å ¨0ç»åï¼mandantory维度é¤å¤ï¼ cuboids [KYLIN-1747](https://issues.apache.org/jira/browse/KYLIN-1747) + - å è®¸å ¨é¨ç»´åº¦é½æ¯mandatory [KYLIN-1749](https://issues.apache.org/jira/browse/KYLIN-1749) + - ä¿®å¤âå½è¿æ¥ç±»åæ¶inneræ¶ä¸è½ä½¿ç¨viewå维度表âçé®é¢ [KYLIN-1789](https://issues.apache.org/jira/browse/KYLIN-1789) + - HBase coprocessoråºéæ¶å°Exceptionä¼ åæ¥è¯¢çº¿ç¨ [KYLIN-1645](https://issues.apache.org/jira/browse/KYLIN-1645) + - ç²¾ç®JDBC driverçä¾èµ [KYLIN-1846](https://issues.apache.org/jira/browse/KYLIN-1846) + - TopNåº¦éæ¯æä½¿ç¨éåå ¸çç¼ç æ¹å¼ [KYLIN-1478](https://issues.apache.org/jira/browse/KYLIN-1478) + + +__å级__ + +åè§[å级æå](/docs15/howto/howto_upgrade.html). + +__æ¯æ__ + +å级å使ç¨è¿ç¨ä¸æä»»ä½é®é¢ï¼è¯·ï¼ +æäº¤è³KylinçJIRA: [https://issues.apache.org/jira/browse/KYLIN/](https://issues.apache.org/jira/browse/KYLIN/) +æè +åéé®ä»¶å°Apache Kyliné®ä»¶å表: [d...@kylin.apache.org](mailto:d...@kylin.apache.org) + +_æè°¢æ¯ä¸ä½æåçåä¸åè´¡ç®!_ \ No newline at end of file http://git-wip-us.apache.org/repos/asf/kylin/blob/0951b201/website/_posts/blog/2016-07-28-release-v1.5.3.md ---------------------------------------------------------------------- diff --git a/website/_posts/blog/2016-07-28-release-v1.5.3.md b/website/_posts/blog/2016-07-28-release-v1.5.3.md new file mode 100644 index 0000000..e6631f9 --- /dev/null +++ b/website/_posts/blog/2016-07-28-release-v1.5.3.md @@ -0,0 +1,47 @@ +--- +layout: post-blog +title: Apache Kylin v1.5.3 Release Announcement +date: 2016-07-28 20:00:00 +author: Shaofeng Shi +categories: blog +--- + +The Apache Kylin community is pleased to announce the release of Apache Kylin v1.5.3. + +Apache Kylin is an open source Distributed Analytics Engine designed to provide SQL interface and multi-dimensional analysis (OLAP) on Hadoop supporting extremely large datasets, original contributed from eBay Inc. + +To download Apache Kylin v1.5.3 source code or binary package: +please visit the [download](http://kylin.apache.org/download) page. + +This is a major release which brings more stable, robust and well management version, Apache Kylin community resolved about 84 issues including bug fixes, improvements, and few new features. + + +## Change Highlights + + - A better way to check hadoop job status [KYLIN-1319](https://issues.apache.org/jira/browse/KYLIN-1319) + - Global (and more scalable) dictionary [KYLIN-1705](https://issues.apache.org/jira/browse/KYLIN-1705) + - More stable and functional precise count distinct implements after KYLIN-1186 [KYLIN-1379](https://issues.apache.org/jira/browse/KYLIN-1379) + - Improve performance of MRv2 engine by making each mapper handles a configured number of records [KYLIN-1656](https://issues.apache.org/jira/browse/KYLIN-1656) + - Distribute source data by certain columns when creating flat table [KYLIN-1677](https://issues.apache.org/jira/browse/KYLIN-1677) + - Allow cube to override MR job configuration by properties [KYLIN-1706](https://issues.apache.org/jira/browse/KYLIN-1706) + - Allow non-admin user to edit 'Advenced Setting' step in CubeDesigner [KYLIN-1731](https://issues.apache.org/jira/browse/KYLIN-1731) + - Calculate all 0 (except mandatory) cuboids [KYLIN-1747](https://issues.apache.org/jira/browse/KYLIN-1747) + - Allow mandatory only cuboid [KYLIN-1749](https://issues.apache.org/jira/browse/KYLIN-1749) + - Couldn't use View as Lookup when join type is "inner" [KYLIN-1789](https://issues.apache.org/jira/browse/KYLIN-1789) + - Exception inside coprocessor should report back to the query thread [KYLIN-1645](https://issues.apache.org/jira/browse/KYLIN-1645) + - minimize dependencies of JDBC driver [KYLIN-1846](https://issues.apache.org/jira/browse/KYLIN-1846) + - TopN measure support non-dictionary encoding [KYLIN-1478](https://issues.apache.org/jira/browse/KYLIN-1478) + + +__Upgrade__ + +Follow the [upgrade guide](/docs15/howto/howto_upgrade.html). + +__Support__ + +Any issue or question, please +open JIRA to Kylin project: [https://issues.apache.org/jira/browse/KYLIN/](https://issues.apache.org/jira/browse/KYLIN/) +or +send mail to Apache Kylin dev mailing list: [d...@kylin.apache.org](mailto:d...@kylin.apache.org) + +_Great thanks to everyone who contributed!_ http://git-wip-us.apache.org/repos/asf/kylin/blob/0951b201/website/download/index.cn.md ---------------------------------------------------------------------- diff --git a/website/download/index.cn.md b/website/download/index.cn.md index eb4cd29..5b18daa 100644 --- a/website/download/index.cn.md +++ b/website/download/index.cn.md @@ -7,27 +7,27 @@ __ææ°åå¸(æºä»£ç )__ ææ°åå¸çApache Kylinâ¢å¯ä»¥ä»ASFç½ç«ä¸è½½ï¼: -* [Apache Kylin v1.5.2.1](http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-1.5.2.1/) +* [Apache Kylin v1.5.3](http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-1.5.3/) * [å叿¥å¿](http://kylin.apache.org/docs15/release_notes.html) -* Git æ ç¾: [kylin-1.5.2.1](https://github.com/apache/kylin/tree/kylin-1.5.2.1) -* Git Commit: [71a847bbe97ec4e6f23b1bf271132d6ff9955a96](https://github.com/apache/kylin/commit/71a847bbe97ec4e6f23b1bf271132d6ff9955a96) +* Git æ ç¾: [kylin-1.5.3](https://github.com/apache/kylin/tree/kylin-1.5.3) +* Git Commit: [4cdc07ea34d0c2fb12951500e0fa28130659affb](https://github.com/apache/kylin/commit/4cdc07ea34d0c2fb12951500e0fa28130659affb) -__1.5.2.1 äºè¿å¶å for HBase 0.98/0.99__ +__1.5.3 äºè¿å¶å for HBase 0.98/0.99__ 为æ¹ä¾¿ä½¿ç¨ï¼æä»¬æä¾é¢æå çäºè¿å¶å®è£ å ï¼ -* [apache-kylin-1.5.2.1-bin.tar.gz](https://dist.apache.org/repos/dist/release/kylin/apache-kylin-1.5.2.1/apache-kylin-1.5.2.1-bin.tar.gz) +* [apache-kylin-1.5.3-bin.tar.gz](http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-1.5.3/apache-kylin-1.5.3-bin.tar.gz) * [å®è£ 帮å©](http://kylin.apache.org/docs15/install) -__1.5.2.1 äºè¿å¶å for HBase 1.x__ +__1.5.3 äºè¿å¶å for HBase 1.x__ -* [apache-kylin-1.5.2.1-HBase1.x-bin.tar.gz](https://dist.apache.org/repos/dist/release/kylin/apache-kylin-1.5.2.1/apache-kylin-1.5.2.1-HBase1.x-bin.tar.gz) -* Git commit [cf4d2940b67d622eacd2ac9a913b221091a35c2e](https://github.com/apache/kylin/commit/cf4d2940b67d622eacd2ac9a913b221091a35c2e) +* [apache-kylin-1.5.3-HBase1.x-bin.tar.gz](http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-1.5.3/apache-kylin-1.5.3-HBase1.x-bin.tar.gz) +* Git commit [90a0c5baba0c0d8e7c1f84ea4b94f0886fa8c19e](https://github.com/apache/kylin/commit/90a0c5baba0c0d8e7c1f84ea4b94f0886fa8c19e) -__1.5.2.1 äºè¿å¶å for CDH 5.7__ +__1.5.3 äºè¿å¶å for CDH 5.7__ -* [apache-kylin-1.5.2.1-cdh5.7-bin.tar.gz](https://dist.apache.org/repos/dist/release/kylin/apache-kylin-1.5.2.1/apache-kylin-1.5.2.1-cdh5.7-bin.tar.gz) -* Git commit [e760242daad739b66813dc2c2d8a52bf74c0ec22](https://github.com/apache/kylin/commit/e760242daad739b66813dc2c2d8a52bf74c0ec22) +* [apache-kylin-1.5.3-cdh5.7-bin.tar.gz](http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-1.5.3/apache-kylin-1.5.3-cdh5.7-bin.tar.gz) +* Git commit [b46029fba7e3c5d387acb9ea37e788de5dcaf0be](https://github.com/apache/kylin/commit/b46029fba7e3c5d387acb9ea37e788de5dcaf0be) __æå»ºäºè¿å¶å __ å¯ä»¥ä»åä¸ªçæ¬æå½åææ°çå¼å忝ä¸çæäºè¿å¶å ï¼è¯·åèè¿ç¯[å¸®å©ææ¡£](https://kylin.apache.org/development/howto_package.html) http://git-wip-us.apache.org/repos/asf/kylin/blob/0951b201/website/download/index.md ---------------------------------------------------------------------- diff --git a/website/download/index.md b/website/download/index.md index f94b6ad..25dea88 100644 --- a/website/download/index.md +++ b/website/download/index.md @@ -7,30 +7,30 @@ permalink: /download/index.html __Latest Release (Source Code)__ The latest release of Apache Kylin⢠can be downloaded from the ASF: -* [Apache Kylin v1.5.2.1](http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-1.5.2.1/) -* [Release Notes](http://kylin.apache.org/docs15/release_notes.html) -* Git Tag: [kylin-1.5.2.1](https://github.com/apache/kylin/tree/kylin-1.5.2.1) -* Git Commit: [71a847bbe97ec4e6f23b1bf271132d6ff9955a96](https://github.com/apache/kylin/commit/71a847bbe97ec4e6f23b1bf271132d6ff9955a96) +* [Apache Kylin v1.5.3](http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-1.5.3/) +* [Release Notes](/docs15/release_notes.html) +* Git Tag: [kylin-1.5.3](https://github.com/apache/kylin/tree/kylin-1.5.3) +* Git Commit: [4cdc07ea34d0c2fb12951500e0fa28130659affb](https://github.com/apache/kylin/commit/4cdc07ea34d0c2fb12951500e0fa28130659affb) __Binary Package (for running on HBase 0.98/0.99)__ For convenience, thereâs binary package also available: -* [apache-kylin-1.5.2.1-bin.tar.gz](https://dist.apache.org/repos/dist/release/kylin/apache-kylin-1.5.2.1/apache-kylin-1.5.2.1-bin.tar.gz) +* [apache-kylin-1.5.3-bin.tar.gz](http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-1.5.3/apache-kylin-1.5.3-bin.tar.gz) * [Installation Guide](http://kylin.apache.org/docs15/install) __Binary Package (for running on HBase 1.x)__ -* [apache-kylin-1.5.2.1-HBase1.x-bin.tar.gz](https://dist.apache.org/repos/dist/release/kylin/apache-kylin-1.5.2.1/apache-kylin-1.5.2.1-HBase1.x-bin.tar.gz) -* Git commit [cf4d2940b67d622eacd2ac9a913b221091a35c2e](https://github.com/apache/kylin/commit/cf4d2940b67d622eacd2ac9a913b221091a35c2e) +* [apache-kylin-1.5.3-HBase1.x-bin.tar.gz](http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-1.5.3/apache-kylin-1.5.3-HBase1.x-bin.tar.gz) +* Git commit [90a0c5baba0c0d8e7c1f84ea4b94f0886fa8c19e](https://github.com/apache/kylin/commit/90a0c5baba0c0d8e7c1f84ea4b94f0886fa8c19e) __Binary Package (for running on CDH 5.7)__ -* [apache-kylin-1.5.2.1-cdh5.7-bin.tar.gz](https://dist.apache.org/repos/dist/release/kylin/apache-kylin-1.5.2.1/apache-kylin-1.5.2.1-cdh5.7-bin.tar.gz) -* Git commit [e760242daad739b66813dc2c2d8a52bf74c0ec22](https://github.com/apache/kylin/commit/e760242daad739b66813dc2c2d8a52bf74c0ec22) +* [apache-kylin-1.5.3-cdh5.7-bin.tar.gz](http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-1.5.3/apache-kylin-1.5.3-cdh5.7-bin.tar.gz) +* Git commit [b46029fba7e3c5d387acb9ea37e788de5dcaf0be](https://github.com/apache/kylin/commit/b46029fba7e3c5d387acb9ea37e788de5dcaf0be) __Build Binary Package__ -To build binary package from any version even latest development branch, please refer to this [guide](https://kylin.apache.org/development/howto_package.html) +To build binary package from any version even latest development branch, please refer to this [guide](/development/howto_package.html) __Previous Release__ Older releases can be found in the [archives](https://archive.apache.org/dist/kylin/).