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:34:43 UTC

[flink] branch release-1.5 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.5
in repository https://gitbox.apache.org/repos/asf/flink.git


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

commit c4db76edc6a1ff9d4722ec538913c0d224fe86db
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 7bf61d9..ba377dd 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.