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

   ### What happened?
   
   While on the JupyterLab notebook cell:
   
   ```python
   import apache_beam as beam
   from apache_beam import Create, Map
   from apache_beam.runners.interactive.interactive_runner import 
InteractiveRunner
   import apache_beam.runners.interactive.interactive_beam as ib
   
   N=7
   p = beam.Pipeline(InteractiveRunner())
   squares = (p | "Create Elements" >> Create(range(N))
                | "Squares" >> Map(lambda x: x**2))
   
   ib.show(squares)
   ```
   
   The `ib.show(squares)` does not show anything except:
   `Processing... show`
   
   ### Issue Priority
   
   Priority: 2 (default / most bugs should be filed as P2)
   
   ### Issue Components
   
   - [x] Component: Python SDK
   - [ ] Component: Java SDK
   - [ ] Component: Go SDK
   - [ ] Component: Typescript SDK
   - [ ] Component: IO connector
   - [ ] Component: Beam YAML
   - [ ] Component: Beam examples
   - [ ] Component: Beam playground
   - [ ] Component: Beam katas
   - [ ] Component: Website
   - [ ] Component: Infrastructure
   - [ ] 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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to