[ 
https://issues.apache.org/jira/browse/BEAM-5529?focusedWorklogId=150313&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-150313
 ]

ASF GitHub Bot logged work on BEAM-5529:
----------------------------------------

                Author: ASF GitHub Bot
            Created on: 02/Oct/18 08:04
            Start Date: 02/Oct/18 08:04
    Worklog Time Spent: 10m 
      Work Description: joar commented on a change in pull request #6535: 
[BEAM-5529] Before starting the final countdown, check that job is not in 
pre-running state
URL: https://github.com/apache/beam/pull/6535#discussion_r221853802
 
 

 ##########
 File path: sdks/python/apache_beam/runners/dataflow/dataflow_runner.py
 ##########
 @@ -155,9 +155,15 @@ def rank_error(msg):
               or str(response.currentState) == 'JOB_STATE_UPDATED'
               or str(response.currentState) == 'JOB_STATE_DRAINED'):
             break
-          # The job has failed; ensure we see any final error messages.
-          sleep_secs = 1.0      # poll faster during the final countdown
-          final_countdown_timer_secs -= sleep_secs
+
+          # Check that job is in a post-preparation state before starting the
+          # final countdown.
+          if (str(response.currentState) != 'JOB_STATE_PENDING'
+              and str(response.currentState) != 'JOB_STATE_QUEUED'):
 
 Review comment:
   I did find it documented here though: 
https://godoc.org/google.golang.org/api/dataflow/v1b3. Seems to be the same 
Dataflow API version (v1b3, v1beta3), so it might just be a case of the 
documentation at 
https://cloud.google.com/dataflow/docs/reference/rest/v1b3/projects.jobs#jobstate
 not being updated.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


Issue Time Tracking
-------------------

    Worklog Id:     (was: 150313)
    Time Spent: 1h 10m  (was: 1h)

> Dataflow runner raises AssertionError if job takes > 50 seconds to go from 
> PENDING to RUNNING
> ---------------------------------------------------------------------------------------------
>
>                 Key: BEAM-5529
>                 URL: https://issues.apache.org/jira/browse/BEAM-5529
>             Project: Beam
>          Issue Type: Bug
>          Components: sdk-py-core
>    Affects Versions: 2.6.0
>            Reporter: Joar Wandborg
>            Assignee: Ahmet Altay
>            Priority: Major
>          Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> To reproduce:
>  - Try to run a Pipeline that takes longer than 50 seconds to go from 
> JOB_STATE_PENDING to JOB_STATE_RUNNING using "with Pipeline() as pipeline:" 
> (automatically executes {{pipeline.run().wait_until_finish()}} via 
> {{Pipeline.__exit__}}) on Dataflow.
>  - Your script will raise "AssertionError: Job did not reach to a terminal 
> state after waiting indefinitely." (from 
> [https://github.com/apache/beam/blob/766a1dc5b6523a0b7a3ce0a9ab78901cf17c9013/sdks/python/apache_beam/runners/dataflow/dataflow_runner.py#L1152-L1153])
> I think the issue is that the block at 
> [https://github.com/apache/beam/blob/766a1dc5b6523a0b7a3ce0a9ab78901cf17c9013/sdks/python/apache_beam/runners/dataflow/dataflow_runner.py#L147-L160]
>  unintentionally exits if it takes > 50 seconds for a job to go from 
> JOB_STATE_PENDING to JOB_STATE_RUNNING.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to