Class View.AsMultimap<K,V>

java.lang.Object
org.apache.beam.sdk.transforms.PTransform<PCollection<KV<K,V>>,PCollectionView<Map<K,Iterable<V>>>>
org.apache.beam.sdk.transforms.View.AsMultimap<K,V>
All Implemented Interfaces:
Serializable, HasDisplayData
Enclosing class:
View

@Internal public static class View.AsMultimap<K,V> extends PTransform<PCollection<KV<K,V>>,PCollectionView<Map<K,Iterable<V>>>>
For internal use only; no backwards-compatibility guarantees.

Public only so a PipelineRunner may override its behavior.

See View.asMultimap().

See Also:
  • Method Details

    • inMemory

      public View.AsMultimap<K,V> inMemory()
      Returns a PCollection view like this one, but whose resulting map will be entirely cached in memory.

      This may use more memory in exchange for the fastest access when used repeatedly, especially when the majority of keys are expected to be used.

    • inMemory

      public View.AsMultimap<K,V> inMemory(boolean inMemory)
      Returns a PCollection view like this one, but whose resulting map will be entirely cached in memory according to the input parameter.

      This may use more memory in exchange for the fastest access when used repeatedly, especially when the majority of keys are expected to be used.

    • expand

      public PCollectionView<Map<K,Iterable<V>>> expand(PCollection<KV<K,V>> input)
      Description copied from class: PTransform
      Override this method to specify how this 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).

      Specified by:
      expand in class PTransform<PCollection<KV<K,V>>,PCollectionView<Map<K,Iterable<V>>>>