com.nicta.scoobi.impl.plan.mscr

InputChannel

Related Docs: object InputChannel | package mscr

trait InputChannel extends Channel

An input channel groups mapping operations from a single DataSource, attached to a source node (a Load node, or a GroupByKey node from a previous Mscr for example).

There are however more data inputs for an InputChannel since the environments of ParallelDos are inputs as well

An InputChannel emits (key, values) of different types classified by an Integer tag, either:

The main functionality of an InputChannel is to map an input key/value to another key/value to be grouped or reduced using the functions of ParallelDos.

There are 2 main types of InputChannels:

They both share some implementation in the MscrInputChannel trait.

An input channel can have no mappers at all. In that case the values from the source node are directly emitted with no transformation.

Two InputChannels are equal if they have the same id.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. InputChannel
  2. Channel
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def bypassOutputNodes: Seq[ParallelDo]

    output nodes (parallelDos) which are not going in a reducer

  2. abstract def cleanup(context: InputOutputContext): Unit

    setup the parallelDos of this input channel

  3. abstract def inputNodes: Seq[CompNode]

    sourceNode + environments for the parallelDo nodes

  4. abstract def keyTypes: KeyTypes

    types of the keys which are emitted by this InputChannel, by tag

  5. abstract def map(key: Any, value: Any, context: InputOutputContext): Unit

    emit a new key/value using the parallelDos functions

  6. abstract def outputNodes: Seq[CompNode]

    nodes where this input channel writes to

  7. abstract def processNodes: Seq[ProcessNode]

    returns

    all the ProcessNodes for this channel

    Definition Classes
    Channel
  8. abstract def setup(context: InputOutputContext): Unit

    setup the parallelDos of this input channel

  9. abstract def source: Source

    data source for this input channel

  10. abstract def sourceNode: CompNode

    main source node providing data for this input channel

  11. abstract def tags: Seq[Int]

    set of tags, which are node ids consuming the values produced by this input channel

  12. abstract def valueTypes: ValueTypes

    types of the values which are emitted by this InputChannel, by tag

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def bypassTags: Seq[Int]

    tags for bypass nodes

  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  8. def equals(a: Any): Boolean

    Definition Classes
    InputChannel → AnyRef → Any
  9. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Definition Classes
    InputChannel → AnyRef → Any
  12. def id: Int

  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  18. def toString(): String

    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Channel

Inherited from AnyRef

Inherited from Any

Ungrouped