Uploaded image for project: 'Beam'
  1. Beam
  2. BEAM-14080

Portable runner does not return job exit status to client after long-running job

Details

    • Bug
    • Status: Open
    • P2
    • Resolution: Unresolved
    • 2.36.0
    • None
    • runner-flink, sdk-py-core
    • None

    Description

      I submit Python Beam jobs to our Flink cluster with the PortableRunner through a remote job server. If a job finishes within a few seconds or minutes, the return status (including a dump of any Python exceptions in case there was an error) is returned to the client upon completion.

      If the job, however, runs for longer (say) hours, then the client and job server seem to lose connection. This results in the client hanging forever until I press Ctrl+C to terminate it, even long after the actual job has completed (which has no effect whatsoever on the actual job).

      Example pseudo job:

      print('Job started')
      with beam.Pipeline() as pipeline:
          pipeline | DoSomething()
      print('Job finished')

      If the pipeline finishes quickly, it looks like this from the client's perspective:

      $ python3 myjob.py
      Job started
      Job finished
      $ _

      If the job runs for longer, then the with statement never finishes and I have to abort the Python script with Ctrl+C:

      $ python3 myjob.py
      Job started
      ^C
      $ _

      Attachments

        Activity

          People

            Unassigned Unassigned
            phoerious Janek Bevendorff
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated: