You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tz...@apache.org on 2017/03/23 08:14:06 UTC

[2/3] flink-web git commit: Add release 1.1.5 blog post

Add release 1.1.5 blog post


Project: http://git-wip-us.apache.org/repos/asf/flink-web/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink-web/commit/29e43ac0
Tree: http://git-wip-us.apache.org/repos/asf/flink-web/tree/29e43ac0
Diff: http://git-wip-us.apache.org/repos/asf/flink-web/diff/29e43ac0

Branch: refs/heads/asf-site
Commit: 29e43ac049720ec2cf9c59db5b43a94a7c7e1f9f
Parents: 0f0e479
Author: Tzu-Li (Gordon) Tai <tz...@apache.org>
Authored: Thu Mar 23 16:00:30 2017 +0800
Committer: Tzu-Li (Gordon) Tai <tz...@apache.org>
Committed: Thu Mar 23 16:00:30 2017 +0800

----------------------------------------------------------------------
 _posts/2017-03-22-release-1.1.5.md | 74 +++++++++++++++++++++++++++++++++
 1 file changed, 74 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink-web/blob/29e43ac0/_posts/2017-03-22-release-1.1.5.md
----------------------------------------------------------------------
diff --git a/_posts/2017-03-22-release-1.1.5.md b/_posts/2017-03-22-release-1.1.5.md
new file mode 100644
index 0000000..8c62cbe
--- /dev/null
+++ b/_posts/2017-03-22-release-1.1.5.md
@@ -0,0 +1,74 @@
+---
+layout: post
+title:  "Apache Flink 1.1.5 Released"
+date:   2017-03-22 18:00:00
+categories: news
+---
+
+The Apache Flink community released the next bugfix version of the Apache Flink 1.1 series.
+
+This release includes critical fixes for HA recovery robustness, fault tolerance
+guarantees of the Flink Kafka Connector, as well as classloading issues with the Kryo serializer.
+We highly recommend all users to upgrade to Flink 1.1.5.
+
+```xml
+<dependency>
+  <groupId>org.apache.flink</groupId>
+  <artifactId>flink-java</artifactId>
+  <version>1.1.5</version>
+</dependency>
+<dependency>
+  <groupId>org.apache.flink</groupId>
+  <artifactId>flink-streaming-java_2.10</artifactId>
+  <version>1.1.5</version>
+</dependency>
+<dependency>
+  <groupId>org.apache.flink</groupId>
+  <artifactId>flink-clients_2.10</artifactId>
+  <version>1.1.5</version>
+</dependency>
+```
+
+You can find the binaries on the updated [Downloads page](http://flink.apache.org/downloads.html).
+
+## Release Notes - Flink - Version 1.1.5
+
+### Bug
+<ul>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-5701'>FLINK-5701</a>] -         FlinkKafkaProducer should check asyncException on checkpoints
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-6006'>FLINK-6006</a>] -         Kafka Consumer can lose state if queried partition list is incomplete on restore
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-5940'>FLINK-5940</a>] -         ZooKeeperCompletedCheckpointStore cannot handle broken state handles
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-5942'>FLINK-5942</a>] -         Harden ZooKeeperStateHandleStore to deal with corrupted data
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-6025'>FLINK-6025</a>] -         User code ClassLoader not used when KryoSerializer fallbacks to serialization for copying
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-5945'>FLINK-5945</a>] -         Close function in OuterJoinOperatorBase#executeOnCollections
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-5934'>FLINK-5934</a>] -         Scheduler in ExecutionGraph null if failure happens in ExecutionGraph.restoreLatestCheckpointedState
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-5771'>FLINK-5771</a>] -         DelimitedInputFormat does not correctly handle multi-byte delimiters
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-5647'>FLINK-5647</a>] -         Fix RocksDB Backend Cleanup
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-2662'>FLINK-2662</a>] -         CompilerException: "Bug: Plan generation for Unions picked a ship strategy between binary plan operators."
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-5585'>FLINK-5585</a>] -         NullPointer Exception in JobManager.updateAccumulators
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-5484'>FLINK-5484</a>] -         Add test for registered Kryo types
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-5518'>FLINK-5518</a>] -         HadoopInputFormat throws NPE when close() is called before open()
+</li>
+</ul>
+
+### Improvement
+<ul>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-5575'>FLINK-5575</a>] -         in old releases, warn users and guide them to the latest stable docs
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-5639'>FLINK-5639</a>] -         Clarify License implications of RabbitMQ Connector
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/FLINK-5466'>FLINK-5466</a>] -         Make production environment default in gulpfile
+</li>
+</ul>