public static class CoGroup.Inner extends PTransform<PCollectionTuple,PCollection<KV<Row,Row>>>
name| Modifier and Type | Method and Description | 
|---|---|
| CoGroup.Inner | byFieldAccessDescriptor(TupleTag<?> tag,
                       FieldAccessDescriptor fieldAccessDescriptor)Select the following fields for the specified PCollection using  FieldAccessDescriptor. | 
| CoGroup.Inner | byFieldIds(TupleTag<?> tag,
          java.lang.Integer... fieldIds)Select the following field ids for the specified PCollection. | 
| CoGroup.Inner | byFieldNames(TupleTag<?> tag,
            java.lang.String... fieldNames)Join by the following field names. | 
| PCollection<KV<Row,Row>> | expand(PCollectionTuple input)Override this method to specify how this  PTransformshould be expanded on the givenInputT. | 
compose, getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, populateDisplayData, toString, validatepublic CoGroup.Inner byFieldNames(TupleTag<?> tag, java.lang.String... fieldNames)
The same field names are used in all input PCollections.
public CoGroup.Inner byFieldIds(TupleTag<?> tag, java.lang.Integer... fieldIds)
Each PCollection in the input must have fields specified for the join key.
public CoGroup.Inner byFieldAccessDescriptor(TupleTag<?> tag, FieldAccessDescriptor fieldAccessDescriptor)
FieldAccessDescriptor.
 Each PCollection in the input must have fields specified for the join key.
public PCollection<KV<Row,Row>> expand(PCollectionTuple input)
PTransformPTransform 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<PCollectionTuple,PCollection<KV<Row,Row>>>