You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2018/09/26 09:35:39 UTC

[flink] branch release-1.6 updated: [hotfix] Add release notes for changed jobmanager.sh syntax

This is an automated email from the ASF dual-hosted git repository.

trohrmann pushed a commit to branch release-1.6
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.6 by this push:
     new e3e4473  [hotfix] Add release notes for changed jobmanager.sh syntax
e3e4473 is described below

commit e3e447346531820184ed98f0c73f110cef2a70d0
Author: Till Rohrmann <tr...@apache.org>
AuthorDate: Wed Sep 26 11:34:06 2018 +0200

    [hotfix] Add release notes for changed jobmanager.sh syntax
---
 docs/release-notes/flink-1.5.md | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/docs/release-notes/flink-1.5.md b/docs/release-notes/flink-1.5.md
index 4cee577..8a5fb69 100644
--- a/docs/release-notes/flink-1.5.md
+++ b/docs/release-notes/flink-1.5.md
@@ -22,6 +22,15 @@ under the License.
 
 These release notes discuss important aspects, such as configuration, behavior, or dependencies, that changed between Flink 1.4 and Flink 1.5. Please read these notes carefully if you are planning to upgrade your Flink version to 1.5.
 
+### Changed syntax of jobmanager.sh script
+
+The `jobmanager.sh` script was reworked which removed the execution mode parameter (`local` vs. `cluster`).
+Now it has the following syntax: `jobmanager.sh ((start|start-foreground) [host] [webui-port])|stop|stop-all`.
+
+Consequently, all external scripts need to remove the execution mode parameter when calling `jobmanager.sh`.
+Otherwise, the execution mode (`local` or `cluster`) will be interpreted as the host name of the started process.
+This can lead to connectivity problems between Flink's components.
+
 ### Update Configuration for Reworked Job Deployment
 
 Flinkā€™s reworked cluster and job deployment component improves the integration with resource managers and enables dynamic resource allocation. One result of these changes is, that you no longer have to specify the number of containers when submitting applications to YARN and Mesos. Flink will automatically determine the number of containers from the parallelism of the application.