This is an automated email from the ASF dual-hosted git repository. alexey pushed a commit to branch gh-pages in repository https://gitbox.apache.org/repos/asf/kudu.git
View the commit online: https://github.com/apache/kudu/commit/7c0749ecf70070e15d8d8779acbdf28c4699c66c The following commit(s) were added to refs/heads/gh-pages by this push: new 7c0749e [site] add 1.10.1 and 1.11.1 release posts 7c0749e is described below commit 7c0749ecf70070e15d8d8779acbdf28c4699c66c Author: Alexey Serbin <[email protected]> AuthorDate: Wed Nov 20 14:41:58 2019 -0800 [site] add 1.10.1 and 1.11.1 release posts Change-Id: I95a329d2a9ef895efeb72bc6a6ccc68f8ccfb7fd Reviewed-on: http://gerrit.cloudera.org:8080/14758 Reviewed-by: Grant Henke <[email protected]> Tested-by: Grant Henke <[email protected]> --- _posts/2019-11-20-apache-kudu-1-10-1-release.md | 30 +++++++++++++ _posts/2019-11-20-apache-kudu-1-11-1-release.md | 60 +++++++++++++++++++++++++ 2 files changed, 90 insertions(+) diff --git a/_posts/2019-11-20-apache-kudu-1-10-1-release.md b/_posts/2019-11-20-apache-kudu-1-10-1-release.md new file mode 100644 index 0000000..74bcae4 --- /dev/null +++ b/_posts/2019-11-20-apache-kudu-1-10-1-release.md @@ -0,0 +1,30 @@ +--- +layout: post +title: Apache Kudu 1.10.1 released +author: Alexey Serbin +--- + +The Apache Kudu team is happy to announce the release of Kudu 1.10.1! + +Apache Kudu 1.10.1 is a bug fix release which fixes critical issues discovered +in Apache Kudu 1.10.0. In particular, this fixes a licensing issue with +distributing libnuma library with the kudu-binary JAR artifact. Users of +Kudu 1.10.0 are encouraged to upgrade to 1.10.1 as soon as possible. See the +[release notes](/releases/1.10.1/docs/release_notes.html) for details. + +<!--more--> + +The Apache Kudu project only publishes source code releases. To build Kudu +1.10.1, follow these steps: + +- Download the Kudu [1.10.1 source release](/releases/1.10.1) +- Follow the instructions in the documentation to build Kudu [1.10.1 from + source](/releases/1.10.1/docs/installation.html#build_from_source) + +For your convenience, binary JAR files for the Kudu Java client library, Spark +DataSource, Flume sink, and other Java integrations are published to the ASF +Maven repository and are [now +available](https://search.maven.org/search?q=g:org.apache.kudu%20AND%20v:1.10.1). + +The Python client source is also available on +[PyPI](https://pypi.org/project/kudu-python/). diff --git a/_posts/2019-11-20-apache-kudu-1-11-1-release.md b/_posts/2019-11-20-apache-kudu-1-11-1-release.md new file mode 100644 index 0000000..bf5e6ce --- /dev/null +++ b/_posts/2019-11-20-apache-kudu-1-11-1-release.md @@ -0,0 +1,60 @@ +--- +layout: post +title: Apache Kudu 1.11.1 released +author: Alexey Serbin +--- + +The Apache Kudu team is happy to announce the release of Kudu 1.11.1! + +This release contains a fix which addresses a critical issue discovered in +1.10.0 and 1.11.0 and adds several new features and improvements since 1.10.0. + +<!--more--> + +Apache Kudu 1.11.1 is a bug fix release which fixes critical issues discovered +in Apache Kudu 1.11.0. In particular, this release fixes a licensing issue with +distributing libnuma library with the kudu-binary JAR artifact. Users of +Kudu 1.11.0 are encouraged to upgrade to 1.11.1 as soon as possible. + +Apache Kudu 1.11.1 adds several new features and improvements since +Apache Kudu 1.10.0, including the following: +- Kudu now supports putting tablet servers into maintenance mode: while in this + mode, the tablet server’s replicas will not be re-replicated if the server + fails. Administrative CLI are added to orchestrate tablet server maintenance + (see [KUDU-2069](https://issues.apache.org/jira/browse/KUDU-2069)). +- Kudu now has a built-in NTP client which maintains the internal wallclock + time used for generation of HybridTime timestamps. When enabled, system clock + synchronization for nodes running Kudu is no longer necessary, + (see [KUDU-2935](https://issues.apache.org/jira/browse/KUDU-2935)). +- Aggregated table statistics are now available to Kudu clients. This allows + for various query optimizations. For example, Spark now uses it to perform + join optimizations + (see [KUDU-2797](https://issues.apache.org/jira/browse/KUDU-2797) and + [KUDU-2721](https://issues.apache.org/jira/browse/KUDU-2721)). +- The kudu CLI tool now supports creating and dropping range partitions + for a table + (see [KUDU-2881](https://issues.apache.org/jira/browse/KUDU-2881)). +- The kudu CLI tool now supports altering and dropping table columns. +- The kudu CLI tool now supports getting and setting extra configuration + properties for a table + (see [KUDU-2514](https://issues.apache.org/jira/browse/KUDU-2514)). + +See the [release notes](/releases/1.11.1/docs/release_notes.html) for details. + +The Apache Kudu project only publishes source code releases. To build Kudu +1.11.1, follow these steps: + +- Download the Kudu [1.11.1 source release](/releases/1.11.1) +- Follow the instructions in the documentation to build Kudu [1.11.1 from + source](/releases/1.11.1/docs/installation.html#build_from_source) + +For your convenience, binary JAR files for the Kudu Java client library, Spark +DataSource, Flume sink, and other Java integrations are published to the ASF +Maven repository and are [now +available](https://search.maven.org/search?q=g:org.apache.kudu%20AND%20v:1.11.1). + +The Python client source is also available on +[PyPI](https://pypi.org/project/kudu-python/). + +Additionally experimental Docker images are published to +[Docker Hub](https://hub.docker.com/r/apache/kudu).
