You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@beam.apache.org by "Abacn (via GitHub)" <gi...@apache.org> on 2023/04/25 15:39:20 UTC

[GitHub] [beam] Abacn opened a new issue, #26418: [Bug]: Direct Runner PipelineResult.State is always RUNNING if set blockOnRun=false

Abacn opened a new issue, #26418:
URL: https://github.com/apache/beam/issues/26418

   ### What happened?
   
   Code snippet:
   
   ```
   PipelineOptions options = PipelineOptionsFactory.fromArgs("--blockOnRun=false").create();
       Pipeline pipeline = Pipeline.create(options);
       pipeline.apply(GenerateSequence.from(0).to(1000));
   
       PipelineResult result = pipeline.run();
   
       while (true) {
         PipelineResult.State state = result.getState();
   
         System.out.println(state);
   
         if (state == State.DONE) {
           break;
         }
       }
   ```
   
   loop never ends.
   
   ### Issue Priority
   
   Priority: 2 (default / most bugs should be filed as P2)
   
   ### Issue Components
   
   - [ ] Component: Python SDK
   - [X] Component: Java SDK
   - [ ] Component: Go SDK
   - [ ] Component: Typescript SDK
   - [ ] Component: IO connector
   - [ ] Component: Beam examples
   - [ ] Component: Beam playground
   - [ ] Component: Beam katas
   - [ ] Component: Website
   - [ ] Component: Spark Runner
   - [ ] Component: Flink Runner
   - [ ] Component: Samza Runner
   - [ ] Component: Twister2 Runner
   - [ ] Component: Hazelcast Jet Runner
   - [ ] Component: Google Cloud Dataflow Runner


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] Abacn closed issue #26418: [Bug]: Direct Runner PipelineResult.State is always RUNNING if set blockOnRun=false

Posted by "Abacn (via GitHub)" <gi...@apache.org>.
Abacn closed issue #26418: [Bug]: Direct Runner PipelineResult.State is always RUNNING if set blockOnRun=false
URL: https://github.com/apache/beam/issues/26418


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org