Packages

object HdfsSource

Source
HdfsSource.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HdfsSource
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def compressed(fs: FileSystem, path: Path, codec: CompressionCodec, chunkSize: Int = 8192): Source[ByteString, CompletionStage[IOResult]]

    Java API: creates a Source that consumes as ByteString

    Java API: creates a Source that consumes as ByteString

    fs

    Hadoop file system

    path

    the file to open

    codec

    a streaming compression/decompression pair

    chunkSize

    the size of each read operation, defaults to 8192

  2. def compressed(fs: FileSystem, path: Path, codec: CompressionCodec): Source[ByteString, CompletionStage[IOResult]]

    Java API: creates a Source that consumes as ByteString

    Java API: creates a Source that consumes as ByteString

    fs

    Hadoop file system

    path

    the file to open

    codec

    a streaming compression/decompression pair

  3. def data(fs: FileSystem, path: Path, chunkSize: Int): Source[ByteString, CompletionStage[IOResult]]

    Java API: creates a Source that consumes as ByteString

    Java API: creates a Source that consumes as ByteString

    fs

    Hadoop file system

    path

    the file to open

    chunkSize

    the size of each read operation, defaults to 8192

  4. def data(fs: FileSystem, path: Path): Source[ByteString, CompletionStage[IOResult]]

    Java API: creates a Source that consumes as ByteString

    Java API: creates a Source that consumes as ByteString

    fs

    Hadoop file system

    path

    the file to open

  5. def sequence[K <: Writable, V <: Writable](fs: FileSystem, path: Path, classK: Class[K], classV: Class[V]): Source[Pair[K, V], NotUsed]

    Java API: creates a Source that consumes as V

    Java API: creates a Source that consumes as V

    fs

    Hadoop file system

    path

    the file to open

    classK

    a key class

    classV

    a value class