Documentation ¶
Overview ¶
Package pipelinex contains utilities for manipulating Beam proto pipelines. The utilities generally uses shallow copies and do not mutate their inputs.
Index ¶
- Variables
- func ApplySdkImageOverrides(p *pipepb.Pipeline, patterns map[string]string) error
- func BoolToBounded(bounded bool) pipepb.IsBounded_Enum
- func Bounded(p *pipepb.Pipeline) bool
- func ContainerImages(p *pipepb.Pipeline) []stringdeprecated
- func Normalize(p *pipepb.Pipeline) (*pipepb.Pipeline, error)
- func ShallowClonePTransform(t *pipepb.PTransform) *pipepb.PTransform
- func TopologicalSort(xforms map[string]*pipepb.PTransform, ids []string) []string
- func TrimCoders(coders map[string]*pipepb.Coder, ids ...string) map[string]*pipepb.Coder
- func Update(p *pipepb.Pipeline, values *pipepb.Components) (*pipepb.Pipeline, error)
Constants ¶
This section is empty.
Variables ¶
var IdempotentNormalize bool = true
IdempotentNormalize determines whether to use the idempotent version of ensureUniqueNames or the legacy version. TODO(BEAM-12341): Cleanup once nothing depends on the legacy implementation.
Functions ¶
func ApplySdkImageOverrides ¶
ApplySdkImageOverrides takes a pipeline and a map of patterns to overrides, and proceeds to replace matching ContainerImages in any Environments present in the pipeline. Each environment is expected to match at most one pattern. If an environment matches two or more it is arbitrary which pattern will be applied.
func BoolToBounded ¶
func BoolToBounded(bounded bool) pipepb.IsBounded_Enum
BoolToBounded is a convenience function to get an IsBounded enum value.
func ContainerImages
deprecated
func Normalize ¶
Normalize recomputes derivative information in the pipeline, such as roots and input/output for composite transforms. It also ensures that unique names are so and topologically sorts each subtransform list.
func ShallowClonePTransform ¶
func ShallowClonePTransform(t *pipepb.PTransform) *pipepb.PTransform
ShallowClonePTransform makes a shallow copy of the given PTransform.
func TopologicalSort ¶
func TopologicalSort(xforms map[string]*pipepb.PTransform, ids []string) []string
TopologicalSort returns a topologically sorted list of the given ids, generally from the same scope/composite. Assumes acyclic graph.
func TrimCoders ¶
TrimCoders returns the transitive closure of the given coders ids.
Types ¶
This section is empty.