You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by "Kai Jiang (JIRA)" <ji...@apache.org> on 2017/08/23 17:54:00 UTC

[jira] [Assigned] (BEAM-1628) Flink runner: logic around --flinkMaster is error-prone

     [ https://issues.apache.org/jira/browse/BEAM-1628?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kai Jiang reassigned BEAM-1628:
-------------------------------

    Assignee: Aljoscha Krettek  (was: Kai Jiang)

> Flink runner: logic around --flinkMaster is error-prone
> -------------------------------------------------------
>
>                 Key: BEAM-1628
>                 URL: https://issues.apache.org/jira/browse/BEAM-1628
>             Project: Beam
>          Issue Type: Bug
>          Components: runner-flink
>            Reporter: Davor Bonaci
>            Assignee: Aljoscha Krettek
>            Priority: Minor
>              Labels: newbie, starter
>
> The logic for handling {{--flinkMaster}} seems not particularly user-friendly.
> https://github.com/apache/beam/blob/fbcde4cdc7d68de8734bf540c079b2747631a854/runners/flink/runner/src/main/java/org/apache/beam/runners/flink/FlinkPipelineExecutionEnvironment.java#L132
> {code}
>     if (masterUrl.equals("[local]")) {
>     } else if (masterUrl.equals("[collection]")) {
>     } else if (masterUrl.equals("[auto]")) {
>     } else if (masterUrl.matches(".*:\\d*")) {
>     } else {
>       // use auto.
>     }
> {code}
> The options are constructed with "auto" set as default.
> I think we should do the following:
> * I assume there's a default port for the Flink master. We should default to it.
> * We should treat a string without a colon as a host name. (Not default to local execution.)
> This is super easy fix, hopefully someone can pick it up quickly ;-)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)