layout: section title: “Filter” permalink: /documentation/transforms/python/elementwise/filter/ section_menu: section-menu/documentation.html

Filter

{% include button-pydoc.md path=“apache_beam.transforms.core” class=“Filter” %}

Given a predicate, filter out all elements that don't satisfy that predicate. May also be used to filter based on an inequality with a given value based on the comparison ordering of the element.

Examples

In the following examples, we create a pipeline with a PCollection of produce with their icon, name, and duration. Then, we apply Filter in multiple ways to filter out produce by their duration value.

Filter accepts a function that keeps elements that return True, and filters out the remaining elements.

Example 1: Filtering with a function

We define a function is_perennial which returns True if the element's duration equals 'perennial', and False otherwise.

{% github_sample /apache/beam/blob/master/sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter.py tag:filter_function %}```

{:.notebook-skip}
Output `PCollection` after `Filter`:

{:.notebook-skip}

{% github_sample /apache/beam/blob/master/sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter_test.py tag:perennials %}```

{% include buttons-code-snippet.md py=“sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter.py” notebook=“examples/notebooks/documentation/transforms/python/elementwise/filter” %}

Example 2: Filtering with a lambda function

We can also use lambda functions to simplify Example 1.

{% github_sample /apache/beam/blob/master/sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter.py tag:filter_lambda %}```

{:.notebook-skip}
Output `PCollection` after `Filter`:

{:.notebook-skip}

{% github_sample /apache/beam/blob/master/sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter_test.py tag:perennials %}```

{% include buttons-code-snippet.md py=“sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter.py” notebook=“examples/notebooks/documentation/transforms/python/elementwise/filter” %}

Example 3: Filtering with multiple arguments

You can pass functions with multiple arguments to Filter. They are passed as additional positional arguments or keyword arguments to the function.

In this example, has_duration takes plant and duration as arguments.

{% github_sample /apache/beam/blob/master/sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter.py tag:filter_multiple_arguments %}```

{:.notebook-skip}
Output `PCollection` after `Filter`:

{:.notebook-skip}

{% github_sample /apache/beam/blob/master/sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter_test.py tag:perennials %}```

{% include buttons-code-snippet.md py=“sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter.py” notebook=“examples/notebooks/documentation/transforms/python/elementwise/filter” %}

Example 4: Filtering with side inputs as singletons

If the PCollection has a single value, such as the average from another computation, passing the PCollection as a singleton accesses that value.

In this example, we pass a PCollection the value 'perennial' as a singleton. We then use that value to filter out perennials.

{% github_sample /apache/beam/blob/master/sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter.py tag:filter_side_inputs_singleton %}```

{:.notebook-skip}
Output `PCollection` after `Filter`:

{:.notebook-skip}

{% github_sample /apache/beam/blob/master/sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter_test.py tag:perennials %}```

{% include buttons-code-snippet.md py=“sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter.py” notebook=“examples/notebooks/documentation/transforms/python/elementwise/filter” %}

Example 5: Filtering with side inputs as iterators

If the PCollection has multiple values, pass the PCollection as an iterator. This accesses elements lazily as they are needed, so it is possible to iterate over large PCollections that won't fit into memory.

{% github_sample /apache/beam/blob/master/sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter.py tag:filter_side_inputs_iter %}```

{:.notebook-skip}
Output `PCollection` after `Filter`:

{:.notebook-skip}

{% github_sample /apache/beam/blob/master/sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter_test.py tag:valid_plants %}```

{% include buttons-code-snippet.md py=“sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter.py” notebook=“examples/notebooks/documentation/transforms/python/elementwise/filter” %}

Note: You can pass the PCollection as a list with beam.pvalue.AsList(pcollection), but this requires that all the elements fit into memory.

Example 6: Filtering with side inputs as dictionaries

If a PCollection is small enough to fit into memory, then that PCollection can be passed as a dictionary. Each element must be a (key, value) pair. Note that all the elements of the PCollection must fit into memory for this. If the PCollection won't fit into memory, use beam.pvalue.AsIter(pcollection) instead.

{% github_sample /apache/beam/blob/master/sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter.py tag:filter_side_inputs_dict %}```

{:.notebook-skip}
Output `PCollection` after `Filter`:

{:.notebook-skip}

{% github_sample /apache/beam/blob/master/sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter_test.py tag:perennials %}```

{% include buttons-code-snippet.md py=“sdks/python/apache_beam/examples/snippets/transforms/elementwise/filter.py” notebook=“examples/notebooks/documentation/transforms/python/elementwise/filter” %}

Related transforms

  • [FlatMap]({{ site.baseurl }}/documentation/transforms/python/elementwise/flatmap) behaves the same as Map, but for each input it might produce zero or more outputs.
  • [ParDo]({{ site.baseurl }}/documentation/transforms/python/elementwise/pardo) is the most general elementwise mapping operation, and includes other abilities such as multiple output collections and side-inputs.

{% include button-pydoc.md path=“apache_beam.transforms.core” class=“Filter” %}