'Error with visualization of apache beam interactive_beam on jupyter notebook
Currently, i'm learning with apache beam on jupyter notebook. I've try the code below and try to display the output with interactive_beam, but when i try to run .show() the header of the notebook itself seem clunky and overly enlarged and no display output.
import apache_beam as beam
from apache_beam.runners.interactive.interactive_runner import InteractiveRunner
import apache_beam.runners.interactive.interactive_beam as ib
with beam.Pipeline(InteractiveRunner()) as p:
input_data = p | beam.Create([1,2,3,4,5])
ib.show(input_data)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
