Repository: drill Updated Branches: refs/heads/gh-pages a9f65bd5a -> 558caec08
Fixed download page and blog post headers Project: http://git-wip-us.apache.org/repos/asf/drill/repo Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/7902a69d Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/7902a69d Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/7902a69d Branch: refs/heads/gh-pages Commit: 7902a69db1186e404493865e41d3b7c463b5569c Parents: cd0ffb1 Author: Tomer Shiran <[email protected]> Authored: Sun Jul 5 18:34:48 2015 -0700 Committer: Bob Rumsby <[email protected]> Committed: Mon Jul 6 10:33:17 2015 -0700 ---------------------------------------------------------------------- _data/version.json | 4 +- blog/_posts/2015-07-05-drill-1.1-released.md | 26 +++++++---- download.html | 4 +- js/script.js | 56 +++++++++++------------ 4 files changed, 49 insertions(+), 41 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/drill/blob/7902a69d/_data/version.json ---------------------------------------------------------------------- diff --git a/_data/version.json b/_data/version.json index c369ac9..9f01bfa 100644 --- a/_data/version.json +++ b/_data/version.json @@ -1,5 +1,7 @@ { "display_version": "1.1", "full_version": "1.1.0", - "release_date": "July 5, 2015" + "release_date": "July 5, 2015", + "blog_post": "/blog/2015/07/05/drill-1.1-released/", + "release_notes": "https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12313820&version=12329689" } http://git-wip-us.apache.org/repos/asf/drill/blob/7902a69d/blog/_posts/2015-07-05-drill-1.1-released.md ---------------------------------------------------------------------- diff --git a/blog/_posts/2015-07-05-drill-1.1-released.md b/blog/_posts/2015-07-05-drill-1.1-released.md index 1013495..404cc41 100644 --- a/blog/_posts/2015-07-05-drill-1.1-released.md +++ b/blog/_posts/2015-07-05-drill-1.1-released.md @@ -7,10 +7,12 @@ authors: ["jnadeau"] --- Today I'm happy to announce the availability of the Drill 1.1 release. This release addresses [162 JIRAs](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12313820&version=12329689) on top of May's 1.0 release. Highlights include: -#### Automatic Partitioning for Parquet Files +## Automatic Partitioning for Parquet Files + Drill now supports creating partitions automatically when using `CREATE TABLE AS` (CTAS) to generate Parquet files. By leveraging the unique capabilities of the Parquet file format, Drill is able provide this capability and still maintain data integrity and compatibility with all other systems that consume Parquet (a world's first). This functionality can be exercised by utilizing the new [`PARTITION BY`](https://drill.apache.org/docs/partition-by-clause/) clause support. -#### Window Functions +## Window Functions + Drill now has first-class support for SQL window Functions. This includes: * Aggregate Functions: `AVG`, `COUNT`, `MAX`, `MIN`, `SUM` @@ -18,16 +20,20 @@ Drill now has first-class support for SQL window Functions. This includes: The community has done an excellent job providing a [comprehensive documentation](https://drill.apache.org/docs/sql-window-functions-introduction/) so that you can start using window functions immediately. -#### Hive Storage Plugin Enhancements +## Hive Storage Plugin Enhancements + We've enhanced Drill to work even better with Hive. We started by upgrading Drill's support to work with Hive 1.0. In addition, Drill now provides a powerful new security feature called [delegated Hive impersonation](https://drill.apache.org/docs/configuring-user-impersonation-with-hive-authorization/). Compatibility and performance are also improved with better data type support (including support for binary, tinyint and smallint data types) and better concurrency. -#### SQL `UNION` Improvements +## SQL UNION Improvements + We've enhanced support for SQL `UNION` functionality. Drill now supports both `UNION` and `UNION ALL` capabilities. We've also improved the query optimizer to better optimize plans that include the `UNION` clause. -#### New Features For Complex Data +## New Features For Complex Data + Drill's complex data capabilities continue to be the best in the market, now including support for `COUNT` aggregations on various types of complex objects. Also, Drill's `FLATTEN` function now supports very large complex objects. -#### Improved JDBC Driver Compatibility +## Improved JDBC Driver Compatibility + Apache Drill's JDBC driver continues to improve. This includes a number of enhancements and fixes to better support JDBC tools including [MicroStrategy](https://drill.apache.org/docs/using-microstrategy-analytics-with-apache-drill/), [TIBCO Spotfire](https://drill.apache.org/docs/using-tibco-spotfire-desktop-with-drill/), [JReport](https://drill.apache.org/docs/configuring-jreport-with-drill/) and [SQuirreL](https://drill.apache.org/docs/using-jdbc-with-squirrel-on-windows/). The Apache Drill community now publishes the JDBC driver for easy inclusion in your application through the use of Maven coordinates. You can incorporate Drill's JDBC driver into your application by [downloading it directly](http://search.maven.org/remotecontent?filepath=org/apache/drill/exec/drill-jdbc-all/1.1.0/drill-jdbc-all-1.1.0.jar) or referencing the following coordinates within your Maven application. @@ -39,10 +45,10 @@ The Apache Drill community now publishes the JDBC driver for easy inclusion in y </dependency> -#### MongoDB 3.0 Support +## MongoDB 3.0 Support Drill now uses MongoDB's latest Java driver and has enhanced connection pooling for better performance and resilience in large-scale deployments. Learn more about using the [MongoDB plugin](https://drill.apache.org/docs/mongodb-plugin-for-apache-drill/). -#### Many More Fixes +## Many More Fixes Drill includes a variety of [other fixes and enhancements](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12313820&version=12329689) including: * Improvements for certain types of exists and correlated subqueries @@ -51,10 +57,10 @@ Drill includes a variety of [other fixes and enhancements](https://issues.apache * Improvements in `INFORMATION_SCHEMA` * Fixes for the Web UI and the REST API -#### More Frequent Releases +## More Frequent Releases The amazing Drill community continues to be the driving force behind these rapid iterative releases. Thanks to all the [committers]({{ site.baseurl }}/team/) and contributors that made this release possible! The community's goal continues to be maintaining a 4-6 release cycle throughout the summer. This means you will have many more enhancements to look for in the next few months. If you use Drill, want to, or want to help develop it, drop by in [the community](https://drill.apache.org/mailinglists/). Download the [Drill 1.1.0 release](https://drill.apache.org/download/) now and let us know your thoughts. Drill On! -Jacques Nadeau \ No newline at end of file +Jacques Nadeau http://git-wip-us.apache.org/repos/asf/drill/blob/7902a69d/download.html ---------------------------------------------------------------------- diff --git a/download.html b/download.html index f261aee..ef5f7db 100755 --- a/download.html +++ b/download.html @@ -17,7 +17,8 @@ title: Download <p>Additional resources for Drill {{ site.data.version.display_version }}:</p> <ul> -<li><a href="{{ site.baseurl }}/docs/apache-drill-{{ site.data.version.full_version | replace: '.', '-' }}-release-notes/">Release notes</a></li> +{% if site.data.version.blog_post %}<li><a href="{{ site.baseurl }}{{ site.data.version.blog_post }}">Blog post</a></li>{% endif %} +{% if site.data.version.release_notes %}<li><a href="{{ site.data.version.release_notes }}">Release notes (JIRA)</a></li>{% endif %} <li><a href="https://github.com/apache/drill/tree/{{ site.data.version.full_version }}">Source code</a></li> </ul> @@ -37,4 +38,3 @@ $('#apachemirror').click(function(event) { }); }); </script> - http://git-wip-us.apache.org/repos/asf/drill/blob/7902a69d/js/script.js ---------------------------------------------------------------------- diff --git a/js/script.js b/js/script.js index fa39fd6..a202349 100755 --- a/js/script.js +++ b/js/script.js @@ -2,18 +2,18 @@ --- var reelPointer = null; $(document).ready(function(e) { - + $(".aLeft").click(function() { moveReel("prev"); }); $(".aRight").click(function() { moveReel("next"); }); - + if ($("#header .scroller .item").length == 1) { - + } else { - + $("#header .dots, .aLeft, .aRight").css({ display: 'block' }); $("#header .scroller .item").each(function(i) { $("#header .dots").append("<div class='dot'></div>"); @@ -22,20 +22,20 @@ $(document).ready(function(e) { moveReel(index); }); }); - + reelPointer = setTimeout(function() { moveReel(1); },5000); } $("#menu ul li").each(function(index, element) { if ($(this).find("ul").length) { - $(this).addClass("parent"); + $(this).addClass("parent"); } }); $("#header .dots .dot:eq(0)").addClass("sel"); - + resized(); - + $(window).scroll(onScroll); var pathname = window.location.pathname; @@ -43,67 +43,67 @@ $(document).ready(function(e) { var pathSlashesReplacedNoFirstDash = pathSlashesReplaced.replace(" ",""); var newClass = pathSlashesReplacedNoFirstDash.replace(/(\.[\s\S]+)/ig, ""); $("body").addClass(newClass); - if ( $("body").attr("class") == "") - { + if ( $("body").attr("class") == "") + { $("body").addClass("class"); } }); var reel_currentIndex = 0; function resized() { - + var WW = parseInt($(window).width(),10); var IW = (WW < 999) ? 999 : WW; var IH = parseInt($("#header .scroller .item").css("height"),10); var IN = $("#header .scroller .item").length; - + $("#header .scroller").css({ width: (IN * IW)+"px", marginLeft: -(reel_currentIndex * IW)+"px" }); $("#header .scroller .item").css({ width: IW+"px" }); - - + + $("#header .scroller .item").each(function(i) { var th = parseInt($(this).find(".tc").height(),10); var d = IH - th + 25; $(this).find(".tc").css({ top: Math.round(d/2)+"px" }); }); - + if (WW < 999) $("#menu").addClass("r"); else $("#menu").removeClass("r"); - + onScroll(); - + } function moveReel(direction) { - + if (reelPointer) clearTimeout(reelPointer); - + var IN = $("#header .scroller .item").length; var IW = $("#header .scroller .item").width(); if (direction == "next") reel_currentIndex++; else if (direction == "prev") reel_currentIndex--; else reel_currentIndex = direction; - + if (reel_currentIndex >= IN) reel_currentIndex = 0; if (reel_currentIndex < 0) reel_currentIndex = IN-1; - + $("#header .dots .dot").removeClass("sel"); $("#header .dots .dot").eq(reel_currentIndex).addClass("sel"); - + $("#header .scroller").stop(false,true,false).animate({ marginLeft: -(reel_currentIndex * IW)+"px" }, 1000, "easeOutQuart"); - + reelPointer = setTimeout(function() { moveReel(1); },5000); - + } function onScroll() { var ST = document.body.scrollTop || document.documentElement.scrollTop; //if ($("#menu.r").length) { - // $("#menu.r").css({ top: ST+"px" }); + // $("#menu.r").css({ top: ST+"px" }); //} else { // $("#menu").css({ top: "0px" }); //} - - if (ST > 400) $("#subhead").addClass("show"); - else $("#subhead").removeClass("show"); + + if (ST > 400) $("#subhead").addClass("show"); + else $("#subhead").removeClass("show"); }
