| Class | Description |
|---|---|
| CoGroupFunction | Deprecated |
| CrossFunction | Deprecated |
| FunctionAnnotation | Deprecated |
| JoinFunction | Deprecated |
| MapFunction | Deprecated |
| MapPartitionFunction | Deprecated |
| ReduceFunction | Deprecated |
| Annotation Type | Description |
|---|---|
| FunctionAnnotation.AllFieldsConstants |
Specifies that all fields of an input record that are unchanged in the output of
a
MapFunction, or ReduceFunction). |
| FunctionAnnotation.ConstantFields |
Specifies the fields of an input record that are unchanged in the output of
a stub with a single input (
MapFunction, ReduceFunction). |
| FunctionAnnotation.ConstantFieldsExcept |
Specifies the fields of an input record that are changed in the output of
a stub with a single input (
MapFunction, ReduceFunction). |
| FunctionAnnotation.ConstantFieldsFirst |
Specifies the fields of an input record of the first input that are unchanged in
the output of a stub with two inputs (
CrossFunction, JoinFunction, CoGroupFunction)
A field is considered to be constant if its value is not changed and copied to the same position of
output record. |
| FunctionAnnotation.ConstantFieldsFirstExcept |
Specifies the fields of an input record of the first input that are changed in
the output of a stub with two inputs (
CrossFunction, JoinFunction, CoGroupFunction)
All other fields are assumed to be constant. |
| FunctionAnnotation.ConstantFieldsSecond |
Specifies the fields of an input record of the second input that are unchanged in
the output of a stub with two inputs (
CrossFunction, JoinFunction, CoGroupFunction)
A field is considered to be constant if its value is not changed and copied to the same position of
output record. |
| FunctionAnnotation.ConstantFieldsSecondExcept |
Specifies the fields of an input record of the second input that are changed in
the output of a stub with two inputs (
CrossFunction, JoinFunction, CoGroupFunction)
All other fields are assumed to be constant. |
Copyright © 2015 The Apache Software Foundation. All rights reserved.