com.nicta.scoobi.io.sequence

SequenceInput

Related Docs: object SequenceInput | package sequence

trait SequenceInput extends AnyRef

Smart functions for materialising distributed lists by loading Sequence files.

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

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 checkedSource[K, V](paths: Seq[String], checkKeyValueTypes: Boolean = true)(implicit arg0: Manifest[K], arg1: Manifest[V]): CheckedSeqSource[K, V, (K, V)]

  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def defaultSequenceInputFormat[K, V]: Class[SequenceFileInputFormat[K, V]]

  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def fromSequenceFile[K, V](paths: Seq[String], checkKeyValueTypes: Boolean = true, check: InputCheck = Source.defaultInputCheck)(implicit arg0: WireFormat[K], arg1: SeqSchema[K], arg2: WireFormat[V], arg3: SeqSchema[V]): DList[(K, V)]

    Create a new DList from the contents of a list of one or more Sequence Files.

    Create a new DList from the contents of a list of one or more Sequence Files. Note that the type parameters K and V are the "converted" Scala types for the Writable key-value types that must be contained in the the Sequence Files. In the case of a directory being specified, the input forms all the files in that directory.

  12. def fromSequenceFile[K, V](paths: String*)(implicit arg0: WireFormat[K], arg1: SeqSchema[K], arg2: WireFormat[V], arg3: SeqSchema[V]): DList[(K, V)]

  13. def fromSequenceFileWithPath[K, V](paths: String*)(implicit arg0: WireFormat[K], arg1: SeqSchema[K], arg2: WireFormat[V], arg3: SeqSchema[V]): DList[(String, (K, V))]

    Create a new DList from the contents of a list of one or more Sequence Files.

    Create a new DList from the contents of a list of one or more Sequence Files. Note that the type parameters K and V are the "converted" Scala types for the Writable key-value types that must be contained in the the Sequence Files. In the case of a directory being specified, the input forms all the files in that directory.

  14. def fromSequenceFileWithPaths[K, V](paths: Seq[String], checkKeyValueTypes: Boolean = true, check: InputCheck = Source.defaultInputCheck)(implicit arg0: WireFormat[K], arg1: SeqSchema[K], arg2: WireFormat[V], arg3: SeqSchema[V]): DList[(String, (K, V))]

  15. def fromSequenceSource[K, V, A](source: SeqSource[K, V, A])(implicit arg0: WireFormat[A]): DListImpl[A]

  16. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. def keyFromSequenceFile[K](paths: Seq[String], checkKeyType: Boolean = true, check: InputCheck = Source.defaultInputCheck)(implicit arg0: WireFormat[K], arg1: SeqSchema[K]): DList[K]

    Create a new DList from the "key" contents of a list of one or more Sequence Files.

    Create a new DList from the "key" contents of a list of one or more Sequence Files. Note that the type parameter K is the "converted" Scala type for the Writable key type that must be contained in the the Sequence Files. In the case of a directory being specified, the input forms all the files in that directory.

  20. def keyFromSequenceFile[K](paths: String*)(implicit arg0: WireFormat[K], arg1: SeqSchema[K]): DList[K]

    Create a new DList from the "key" contents of one or more Sequence Files.

    Create a new DList from the "key" contents of one or more Sequence Files. Note that the type parameter K is the "converted" Scala type for the Writable key type that must be contained in the the Sequence Files. In the case of a directory being specified, the input forms all the files in that directory.

  21. def keyFromSequenceFileWithPath[K](path: String, checkKeyType: Boolean = true, check: InputCheck = Source.defaultInputCheck)(implicit arg0: WireFormat[K], arg1: SeqSchema[K]): DList[(String, K)]

    Create a new DList from the "key" contents of a list of one or more Sequence Files.

    Create a new DList from the "key" contents of a list of one or more Sequence Files. Note that the type parameter K is the "converted" Scala type for the Writable key type that must be contained in the the Sequence Files. In the case of a directory being specified, the input forms all the files in that directory. The distributed list is a tuple where the first part is the path of the originating file and the second part is the "key".

  22. def keyFromSequenceFileWithPaths[K](paths: Seq[String], checkKeyType: Boolean = true, check: InputCheck = Source.defaultInputCheck)(implicit arg0: WireFormat[K], arg1: SeqSchema[K]): DList[(String, K)]

  23. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  26. def source[K, V](paths: Seq[String])(implicit arg0: WireFormat[K], arg1: SeqSchema[K], arg2: WireFormat[V], arg3: SeqSchema[V]): SeqSource[K, V, (K, V)]

  27. def splitpath[K, V](context: MapContext[K, V, _, _]): String

    Attributes
    protected
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  29. def toString(): String

    Definition Classes
    AnyRef → Any
  30. def valueFromSequenceFile[V](paths: Seq[String], checkValueType: Boolean = true, check: InputCheck = Source.defaultInputCheck)(implicit arg0: WireFormat[V], arg1: SeqSchema[V]): DList[V]

    Create a new DList from the "value" contents of a list of one or more Sequence Files.

    Create a new DList from the "value" contents of a list of one or more Sequence Files. Note that the type parameter V is the "converted" Scala type for the Writable value type that must be contained in the the Sequence Files. In the case of a directory being specified, the input forms all the files in that directory.

  31. def valueFromSequenceFile[V](paths: String*)(implicit arg0: WireFormat[V], arg1: SeqSchema[V]): DList[V]

    Create a new DList from the "value" contents of one or more Sequence Files.

    Create a new DList from the "value" contents of one or more Sequence Files. Note that the type parameter V is the "converted" Scala type for the Writable value type that must be contained in the the Sequence Files. In the case of a directory being specified, the input forms all the files in that directory.

  32. def valueFromSequenceFileWithPath[V](path: String, checkValueType: Boolean = true, check: InputCheck = Source.defaultInputCheck)(implicit arg0: WireFormat[V], arg1: SeqSchema[V]): DList[(String, V)]

    Create a new DList from the "value" contents of a list of one or more Sequence Files.

    Create a new DList from the "value" contents of a list of one or more Sequence Files. Note that the type parameter V is the "converted" Scala type for the Writable value type that must be contained in the the Sequence Files. In the case of a directory being specified, the input forms all the files in that directory. The distributed list is a tuple where the first part is the path of the originating file and the second part is the "value".

  33. def valueFromSequenceFileWithPaths[V](paths: Seq[String], checkValueType: Boolean = true, check: InputCheck = Source.defaultInputCheck)(implicit arg0: WireFormat[V], arg1: SeqSchema[V]): DList[(String, V)]

  34. def valueSource[V](paths: Seq[String])(implicit arg0: SeqSchema[V]): SeqSource[Writable, valueSource.convV.type.SeqType, V] forSome {val convV: SeqSchema[V]}

  35. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped