- java.lang.Object
-
- com.pervasive.datarush.operators.AbstractLogicalOperator
-
- com.pervasive.datarush.operators.StreamingOperator
-
- com.pervasive.datarush.operators.ExecutableOperator
-
- com.pervasive.datarush.operators.AbstractExecutableRecordPipeline
-
- com.pervasive.datarush.operators.record.DeriveFields
-
- All Implemented Interfaces:
LogicalOperator
,PipelineOperator<RecordPort>
,RecordPipelineOperator
public final class DeriveFields extends AbstractExecutableRecordPipeline
Applies one or more functions to the input record data. One output field is generated per function. The result is an output record flow that contains the input data plus the function results. It is possible to overwrite existing fields with derived values. It is also possible to omit input fields in the result, effectively applying a complete transform to the record.Applying multiple functions to an input record flow within a single dataflow process can be more efficient than applying each function in its own process. This is due to many factors, but mainly: preventing processor cache thrashing, saving data copies and lowering thread context switching.
-
-
Field Summary
-
Fields inherited from class com.pervasive.datarush.operators.AbstractExecutableRecordPipeline
input, output
-
-
Constructor Summary
Constructors Constructor Description DeriveFields()
Applies no functions to the input records.DeriveFields(FieldDerivation... derivations)
Applies the specified derivations to all input records.DeriveFields(String derivationExpression)
Applies the specified derivations to all input records.DeriveFields(String derivationExpression, boolean dropUnderived)
Applies the specified derivations to all input records.DeriveFields(List<FieldDerivation> derivations)
Applies the specified derivations to all input records.DeriveFields(List<FieldDerivation> derivations, boolean dropUnderived)
Applies the specified derivations to all input records.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
computeMetadata(StreamingMetadataContext ctx)
Implementations must adhere to the following contractsprotected void
execute(ExecutionContext ctx)
Executes the operator.List<FieldDerivation>
getDerivedFields()
Get the list of derivations that will be applied.boolean
getDropUnderivedFields()
Indicates whether input fields are dropped from the output.RecordPort
getInput()
Gets the record port providing the input data to the operation.RecordPort
getOutput()
Gets the record port providing the output from the operation.void
setDerivedFields(FieldDerivation... derivations)
Set the list of field derivations to apply.void
setDerivedFields(String derivationExpression)
Set the list of field derivations to apply, using a field derivation expression.void
setDerivedFields(List<FieldDerivation> derivations)
Set the list of field derivations to apply.void
setDropUnderivedFields(boolean dropUnderived)
Set whether input fields are dropped from the output.-
Methods inherited from class com.pervasive.datarush.operators.ExecutableOperator
cloneForExecution, getNumInputCopies, getPortSettings, handleInactiveOutput
-
Methods inherited from class com.pervasive.datarush.operators.AbstractLogicalOperator
disableParallelism, getInputPorts, getOutputPorts, newInput, newInput, newOutput, newRecordInput, newRecordInput, newRecordOutput, notifyError
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.pervasive.datarush.operators.LogicalOperator
disableParallelism, getInputPorts, getOutputPorts
-
-
-
-
Constructor Detail
-
DeriveFields
public DeriveFields()
Applies no functions to the input records. This effectively copies records from the input to the output. UsesetDerivedFields(FieldDerivation...)
to set the functions to apply.
-
DeriveFields
public DeriveFields(String derivationExpression)
Applies the specified derivations to all input records. All input fields are present in the output, containing the same value unless explicitly replaced by a derivation. If multiple derivations apply to an output field, the last one defined is used.- Parameters:
derivations
- the expression containing field derivations to apply
-
DeriveFields
public DeriveFields(List<FieldDerivation> derivations)
Applies the specified derivations to all input records. All input fields are present in the output, containing the same value unless explicitly replaced by a derivation. If multiple derivations apply to an output field, the last one defined is used.- Parameters:
derivations
- the field derivations to apply
-
DeriveFields
public DeriveFields(FieldDerivation... derivations)
Applies the specified derivations to all input records. All input fields are present in the output, containing the same value unless explicitly replaced by a derivation. If multiple derivations apply to an output field, the last one defined is used.- Parameters:
derivations
- the field derivations to apply
-
DeriveFields
public DeriveFields(String derivationExpression, boolean dropUnderived)
Applies the specified derivations to all input records. If requested, input fields will not be automatically copied to the output. If multiple derivations apply to an output field, the last one defined is used.- Parameters:
derivationExpression
- the expression containing field derivations to applydropUnderived
- true if input fields should be dropped; false otherwise
-
DeriveFields
public DeriveFields(List<FieldDerivation> derivations, boolean dropUnderived)
Applies the specified derivations to all input records. If requested, input fields will not be automatically copied to the output. If multiple derivations apply to an output field, the last one defined is used.- Parameters:
derivations
- the field derivations to applydropUnderived
- true if input fields should be dropped; false otherwise
-
-
Method Detail
-
getInput
public RecordPort getInput()
Description copied from class:AbstractExecutableRecordPipeline
Gets the record port providing the input data to the operation.- Specified by:
getInput
in interfacePipelineOperator<RecordPort>
- Overrides:
getInput
in classAbstractExecutableRecordPipeline
- Returns:
- the input port for the operation
-
getOutput
public RecordPort getOutput()
Description copied from class:AbstractExecutableRecordPipeline
Gets the record port providing the output from the operation.- Specified by:
getOutput
in interfacePipelineOperator<RecordPort>
- Overrides:
getOutput
in classAbstractExecutableRecordPipeline
- Returns:
- the output port for the operation
-
setDerivedFields
public void setDerivedFields(String derivationExpression)
Set the list of field derivations to apply, using a field derivation expression. If multiple derivations apply to an output field, the last one defined is used.- Parameters:
derivations
- the field derivations to apply
-
setDerivedFields
public void setDerivedFields(List<FieldDerivation> derivations)
Set the list of field derivations to apply. Derivations can be easily constructed using the convenience methodFieldDerivation.derive(String, ScalarValuedFunction)
. If multiple derivations apply to an output field, the last one defined is used.- Parameters:
derivations
- the field derivations to apply
-
setDerivedFields
public void setDerivedFields(FieldDerivation... derivations)
Set the list of field derivations to apply. Derivations can be easily constructed using the convenience methodFieldDerivation.derive(String, ScalarValuedFunction)
. If multiple derivations apply to an output field, the last one defined is used.- Parameters:
derivations
- the field derivations to apply
-
getDerivedFields
public List<FieldDerivation> getDerivedFields()
Get the list of derivations that will be applied.- Returns:
- the field derivations to apply
-
getDropUnderivedFields
public boolean getDropUnderivedFields()
Indicates whether input fields are dropped from the output. That is, whether the output consists solely of derived fields.- Returns:
- true if non-derived fields are dropped; false otherwise
-
setDropUnderivedFields
public void setDropUnderivedFields(boolean dropUnderived)
Set whether input fields are dropped from the output. If set totrue
only derived fields are included in the output.This value is
false
by default.- Parameters:
dropUnderived
- indicates whether to drop input fields from the output
-
computeMetadata
protected void computeMetadata(StreamingMetadataContext ctx)
Description copied from class:StreamingOperator
Implementations must adhere to the following contractsGeneral
Regardless of input ports/output port types, all implementations must do the following:- Validation. Validation of configuration should always be performed first.
- Declare parallelizability.. Implementations must declare parallelizability by calling
StreamingMetadataContext.parallelize(ParallelismStrategy)
.
Input record ports
Implementations with input record ports must declare the following:- Required data ordering: Implementations that have data ordering requirements must declare them by calling
- Required data distribution (only applies to parallelizable operators): Implementations that have data distribution requirements must declare them by calling
RecordPort#setRequiredDataOrdering
, otherwise data may arrive in any order.RecordPort#setRequiredDataDistribution
, otherwise data will arrive in anunspecified partial distribution
.RecordPort#getSourceDataDistribution
andRecordPort#getSourceDataOrdering
. These should be viewed as a hints to help chose a more efficient algorithm. In such cases, though, operators must still declare data ordering and data distribution requirements; otherwise there is no guarantee that data will arrive sorted/distributed as required.Output record ports
Implementations with output record ports must declare the following:- Type: Implementations must declare their output type by calling
RecordPort#setType
.
- Output data ordering: Implementations that can make guarantees as to their output
ordering may do so by calling
RecordPort#setOutputDataOrdering
- Output data distribution (only applies to parallelizable operators): Implementations that can make guarantees as to their output
distribution may do so by calling
RecordPort#setOutputDataDistribution
Input model ports
In general, there is nothing special to declare for input model ports. Models are implicitly duplicated to all partitions when going from non-parallel to parallel operators. The case of a model going from a parallel to a non-parallel node is a special case of a "model reducer" operator. In the case of a model reducer, the downstream operator, must declare the following:- Merge handler: Model reducers must declare a merge handler by
calling
AbstractModelPort#setMergeHandler
.
MergeModel
is a convenient, re-usable model reducer, parameterized with a merge-handler.Output model ports
SimpleModelPort
's have no associated metadata and therefore there is never any output metadata to declare.PMMLPort
's, on the other hand, do have associated metadata. For all PMMLPorts, implementations must declare the following:- pmmlModelSpec: Implementations must declare the PMML model spec
by calling
PMMLPort.setPMMLModelSpec
.
- Specified by:
computeMetadata
in classStreamingOperator
- Parameters:
ctx
- the context
-
execute
protected void execute(ExecutionContext ctx)
Description copied from class:ExecutableOperator
Executes the operator. Implementations should adhere to the following contracts:- Following execution, all input ports must be at end-of-data.
- Following execution, all output ports must be at end-of-data.
- Specified by:
execute
in classExecutableOperator
- Parameters:
ctx
- context in which to lookup physical ports bound to logical ports
-
-