You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by mxm <gi...@git.apache.org> on 2016/06/22 14:37:01 UTC

[GitHub] flink pull request #2147: [FLINK-1946] reduce verbosity of Yarn cluster setu...

GitHub user mxm opened a pull request:

    https://github.com/apache/flink/pull/2147

    [FLINK-1946] reduce verbosity of Yarn cluster setup

    This removes repeated printing of messages retrieved from the Yarn cluster. Only new messages are printed.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/mxm/flink FLINK-1946

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/flink/pull/2147.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #2147
    
----
commit 11627c99532416eb45d36c2c485cf61a1410f9f0
Author: Maximilian Michels <mx...@apache.org>
Date:   2016-06-22T14:33:15Z

    [FLINK-1946] reduce verbosity of Yarn cluster setup
    
    This removes repeated printing of messages retrieved from the Yarn
    cluster. Only new messages are printed.

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] flink pull request #2147: [FLINK-1946] reduce verbosity of Yarn cluster setu...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/flink/pull/2147


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] flink pull request #2147: [FLINK-1946] reduce verbosity of Yarn cluster setu...

Posted by zentol <gi...@git.apache.org>.
Github user zentol commented on a diff in the pull request:

    https://github.com/apache/flink/pull/2147#discussion_r68269922
  
    --- Diff: flink-yarn/src/main/java/org/apache/flink/yarn/AbstractYarnClusterDescriptor.java ---
    @@ -750,13 +751,16 @@ protected YarnClusterClient deployInternal() throws Exception {
     					LOG.info("YARN application has been deployed successfully.");
     					break loop;
     				default:
    -					LOG.info("Deploying cluster, current state " + appState);
    -					if(waittime > 60000) {
    +					if (appState != lastAppState) {
    +						LOG.info("Deploying cluster, current state " + appState);
    +					}
    +					if(waitTime > 60000) {
    --- End diff --
    
    missing space after if


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] flink issue #2147: [FLINK-1946] reduce verbosity of Yarn cluster setup

Posted by zentol <gi...@git.apache.org>.
Github user zentol commented on the issue:

    https://github.com/apache/flink/pull/2147
  
    +1


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---