The samples on this page show you common Beam side input patterns. A side input is an additional input that your DoFn can access each time it processes an element in the input PCollection. For more information, see the programming guide section on side inputs.
If you are trying to enrich your data by doing a key-value lookup to a remote service, you may first want to consider the Enrichment transform which can abstract away some of the details of side inputs and provide additional benefits like client-side throttling.
{{< language-switcher java py >}}
You can retrieve side inputs from global windows to use them in a pipeline job with non-global windows, like a FixedWindow.
To slowly update global window side inputs in pipelines with non-global windows:
Write a DoFn that periodically pulls data from a bounded source into a global window.
a. Use the GenerateSequence source transform to periodically emit a value.
b. Instantiate a data-driven trigger that activates on each element and pulls data from a bounded source.
c. Fire the trigger to pass the data into the global window.
Create the side input for downstream transforms. The side input should fit into memory.
The global window side input triggers on processing time, so the main pipeline non-deterministically matches the side input to elements in event time.
For instance, the following code sample uses a Map to create a DoFn. The Map becomes a View.asSingleton side input that’s rebuilt on each counter tick. The side input updates every 5 seconds in order to demonstrate the workflow. In a real-world scenario, the side input would typically update every few hours or once per day.
{{< highlight java >}} {{< code_sample “examples/java/src/main/java/org/apache/beam/examples/snippets/Snippets.java” SideInputPatternSlowUpdateGlobalWindowSnip1 >}} {{< /highlight >}}
{{< highlight py >}} No sample present. {{< /highlight >}}
You can read side input data periodically into distinct PCollection windows. When you apply the side input to your main input, each main input window is automatically matched to a single side input window. This guarantees consistency on the duration of the single window, meaning that each window on the main input will be matched to a single version of side input data.
To read side input data periodically into distinct PCollection windows:
{{< highlight java >}} {{< code_sample “examples/java/src/main/java/org/apache/beam/examples/snippets/Snippets.java” PeriodicallyUpdatingSideInputs >}} {{< /highlight >}}
{{< highlight py >}} {{< code_sample “sdks/python/apache_beam/examples/snippets/snippets.py” SideInputSlowUpdateSnip1 >}} {{< /highlight >}}