This deprecated node provides similar functionality to the Transform node, allowing you to filter and transform data using Python code.
CAUTION:
This node has been deprecated and will not be supported in a future release. As an alternative, the Transform node can be used to provide similar functionality.
This node should be used as a python node when simple input behavior is desired, where you can take one or more inputs that should be concatenated together (either union, intersection, or exact). The code for initialization, finalization, and handleRecord must be specified. handleRecord will be called once for each input record on every input.
Properties
ConcatenationMode
Optionally specify how to merge data. Choose from:
- Union - Outputs all of the fields across the inputs, filling in nulls for fields not present in a given input.
- Exact - The fields for all inputs must be the same.
- Intersection - Outputs all the fields common to the inputs.
The default value is Exact.
Inputs and outputs
Inputs: in1, multiple optional.
Outputs: out1, multiple optional.