Resource hints
Resource hints let pipeline authors provide information to a runner about compute resource requirements. You can use resource hints to define requirements for specific transforms or for an entire pipeline. The runner is responsible for interpreting resource hints, and runners can ignore unsupported hints.
Resource hints can be nested. For example, resource hints can be specified on subtransforms of a composite transform, and that composite transform can also have resource hints applied. By default, the innermost hint takes precedence. However, hints can define custom reconciliation behavior. For example, min_ram
takes the maximum value for all min_ram
values set on a given step in the pipeline.
- Java SDK
- Python SDK
Available hints
Currently, Beam supports the following resource hints:
min_ram="numberXB"
: The minimum amount of RAM to allocate to workers. Beam can parse various byte units, including MB, GB, MiB, and GiB (for example,min_ram="4GB"
). This hint is intended to provide advisory minimal memory requirements for processing a transform.accelerator="hint"
: This hint is intended to describe a hardware accelerator to use for processing a transform. For example, the following is valid accelerator syntax for the Dataflow runner:accelerator="type:<type>;count:<n>;<options>"
The interpretaton and actuation of resource hints can vary between runners. For an example implementation, see the Dataflow resource hints.
Specifying resource hints for a pipeline
To specify resource hints for an entire pipeline, you can use pipeline options. The following command shows the basic syntax.
Specifying resource hints for a transform
You can set resource hints programmatically on pipeline transforms using setResourceHints.
You can set resource hints programmatically on pipeline transforms using PTransforms.with_resource_hints (also see ResourceHint).
Last updated on 2024/11/14
Have you found everything you were looking for?
Was it all useful and clear? Is there anything that you would like to change? Let us know!