You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by "Stas Levin (JIRA)" <ji...@apache.org> on 2016/11/27 12:06:58 UTC

[jira] [Created] (BEAM-1050) PipelineResult.State is not set to FAILED in when a streaming job fails

Stas Levin created BEAM-1050:
--------------------------------

             Summary: PipelineResult.State is not set to FAILED in when a streaming job fails
                 Key: BEAM-1050
                 URL: https://issues.apache.org/jira/browse/BEAM-1050
             Project: Beam
          Issue Type: Bug
          Components: runner-spark
            Reporter: Stas Levin
            Assignee: Stas Levin
            Priority: Minor


In case of failure, {{SteamingContext#awaitTerminationOrTimeout}} and {{SteamingContext#awaitTermination}} will both throw an exception, and so {{state = State.DONE}} will not be executed in the code block below. 

In addition, it would probably make sense to set {{state = State.FAILED}} in cases where an exception takes place.

{code:java}
if (isStreamingPipeline()) {
      // stop streaming context
      if (timeout > 0) {
        jssc.awaitTerminationOrTimeout(timeout);
      } else {
        jssc.awaitTermination();
      }
      // stop streaming context gracefully, so checkpointing (and other computations) get to
      // finish before shutdown.
      jssc.stop(false, gracefully);
    }
    state = State.DONE;
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)