public class PythonMap<InputT,OutputT> extends PTransform<PCollection<? extends InputT>,PCollection<OutputT>>
Map
transforms..name, resourceHints
Modifier and Type | Method and Description |
---|---|
PCollection<OutputT> |
expand(PCollection<? extends InputT> input)
Override this method to specify how this
PTransform should be expanded on the given
InputT . |
static <InputT,OutputT> |
viaFlatMapFn(java.lang.String pythonFunction,
Coder<?> outputCoder) |
static <InputT,OutputT> |
viaMapFn(java.lang.String pythonFunction,
Coder<?> outputCoder) |
PythonMap<InputT,OutputT> |
withExpansionService(java.lang.String expansionService) |
PythonMap<InputT,OutputT> |
withExtraPackages(java.util.List<java.lang.String> extraPackages)
Specifies any extra packages required by the Python function.
|
compose, compose, getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, populateDisplayData, setResourceHints, toString, validate, validate
public static <InputT,OutputT> PythonMap<InputT,OutputT> viaMapFn(java.lang.String pythonFunction, Coder<?> outputCoder)
public static <InputT,OutputT> PythonMap<InputT,OutputT> viaFlatMapFn(java.lang.String pythonFunction, Coder<?> outputCoder)
public PythonMap<InputT,OutputT> withExpansionService(java.lang.String expansionService)
public PythonMap<InputT,OutputT> withExtraPackages(java.util.List<java.lang.String> extraPackages)
This should only be specified when using the default expansion service, i.e. when not using
withExpansionService(String)
to provide an expansion service.
The package can either be a PyPi package or the path to a locally available Python package.
extraPackages
- a list of PyPi packages. May include the version.PythonMap
with extra packages.public PCollection<OutputT> expand(PCollection<? extends InputT> input)
PTransform
PTransform
should be expanded on the given
InputT
.
NOTE: This method should not be called directly. Instead apply the PTransform
should
be applied to the InputT
using the apply
method.
Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
expand
in class PTransform<PCollection<? extends InputT>,PCollection<OutputT>>