Packages

object HdfsFlow

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

Value Members

  1. def compressed(fs: FileSystem, syncStrategy: SyncStrategy, rotationStrategy: RotationStrategy, compressionCodec: CompressionCodec, settings: HdfsWritingSettings): Flow[HdfsWriteMessage[ByteString, NotUsed], RotationMessage, NotUsed]

    Java API: creates a flow for org.apache.hadoop.io.compress.CompressionOutputStream

    fs

    Hadoop file system

    syncStrategy

    sync strategy

    rotationStrategy

    rotation strategy

    compressionCodec

    a streaming compression/decompression pair

    settings

    hdfs writing settings

  2. def compressedWithPassThrough[P](fs: FileSystem, syncStrategy: SyncStrategy, rotationStrategy: RotationStrategy, compressionCodec: CompressionCodec, settings: HdfsWritingSettings): Flow[HdfsWriteMessage[ByteString, P], OutgoingMessage[P], NotUsed]

    Java API: creates a flow for org.apache.hadoop.io.compress.CompressionOutputStream with passThrough of type C

    Java API: creates a flow for org.apache.hadoop.io.compress.CompressionOutputStream with passThrough of type C

    fs

    Hadoop file system

    syncStrategy

    sync strategy

    rotationStrategy

    rotation strategy

    compressionCodec

    a streaming compression/decompression pair

    settings

    hdfs writing settings

  3. def data(fs: FileSystem, syncStrategy: SyncStrategy, rotationStrategy: RotationStrategy, settings: HdfsWritingSettings): Flow[HdfsWriteMessage[ByteString, NotUsed], RotationMessage, NotUsed]

    Java API: creates a Flow for org.apache.hadoop.fs.FSDataOutputStream

    Java API: creates a Flow for org.apache.hadoop.fs.FSDataOutputStream

    fs

    Hadoop file system

    syncStrategy

    sync strategy

    rotationStrategy

    rotation strategy

    settings

    hdfs writing settings

  4. def dataWithPassThrough[P](fs: FileSystem, syncStrategy: SyncStrategy, rotationStrategy: RotationStrategy, settings: HdfsWritingSettings): Flow[HdfsWriteMessage[ByteString, P], OutgoingMessage[P], NotUsed]

    Java API: creates a flow for org.apache.hadoop.fs.FSDataOutputStream with passThrough of type C

    Java API: creates a flow for org.apache.hadoop.fs.FSDataOutputStream with passThrough of type C

    fs

    Hadoop file system

    syncStrategy

    sync strategy

    rotationStrategy

    rotation strategy

    settings

    hdfs writing settings

  5. def sequence[K <: Writable, V <: Writable](fs: FileSystem, syncStrategy: SyncStrategy, rotationStrategy: RotationStrategy, compressionType: CompressionType, compressionCodec: CompressionCodec, settings: HdfsWritingSettings, classK: Class[K], classV: Class[V]): Flow[HdfsWriteMessage[Pair[K, V], NotUsed], RotationMessage, NotUsed]

    Java API: creates a flow for org.apache.hadoop.io.SequenceFile.Writer with a compression

    Java API: creates a flow for org.apache.hadoop.io.SequenceFile.Writer with a compression

    fs

    Hadoop file system

    syncStrategy

    sync strategy

    rotationStrategy

    rotation strategy

    compressionType

    a compression type used to compress key/value pairs in the SequenceFile

    compressionCodec

    a streaming compression/decompression pair

    settings

    hdfs writing settings

    classK

    a key class

    classV

    a value class

  6. def sequence[K <: Writable, V <: Writable](fs: FileSystem, syncStrategy: SyncStrategy, rotationStrategy: RotationStrategy, settings: HdfsWritingSettings, classK: Class[K], classV: Class[V]): Flow[HdfsWriteMessage[Pair[K, V], NotUsed], RotationMessage, NotUsed]

    Java API: creates a flow for org.apache.hadoop.io.SequenceFile.Writer without a compression

    Java API: creates a flow for org.apache.hadoop.io.SequenceFile.Writer without a compression

    fs

    Hadoop file system

    syncStrategy

    sync strategy

    rotationStrategy

    rotation strategy

    settings

    hdfs writing settings

    classK

    a key class

    classV

    a value class

  7. def sequenceWithPassThrough[K <: Writable, V <: Writable, P](fs: FileSystem, syncStrategy: SyncStrategy, rotationStrategy: RotationStrategy, compressionType: CompressionType, compressionCodec: CompressionCodec, settings: HdfsWritingSettings, classK: Class[K], classV: Class[V]): Flow[HdfsWriteMessage[Pair[K, V], P], OutgoingMessage[P], NotUsed]

    Java API: creates a flow for org.apache.hadoop.io.SequenceFile.Writer with passThrough of type C and a compression

    Java API: creates a flow for org.apache.hadoop.io.SequenceFile.Writer with passThrough of type C and a compression

    fs

    Hadoop file system

    syncStrategy

    sync strategy

    rotationStrategy

    rotation strategy

    compressionType

    a compression type used to compress key/value pairs in the SequenceFile

    compressionCodec

    a streaming compression/decompression pair

    settings

    hdfs writing settings

    classK

    a key class

    classV

    a value class

  8. def sequenceWithPassThrough[K <: Writable, V <: Writable, P](fs: FileSystem, syncStrategy: SyncStrategy, rotationStrategy: RotationStrategy, settings: HdfsWritingSettings, classK: Class[K], classV: Class[V]): Flow[HdfsWriteMessage[Pair[K, V], P], OutgoingMessage[P], NotUsed]

    Java API: creates a flow for org.apache.hadoop.io.SequenceFile.Writer with passThrough of type C and without a compression

    Java API: creates a flow for org.apache.hadoop.io.SequenceFile.Writer with passThrough of type C and without a compression

    fs

    Hadoop file system

    syncStrategy

    sync strategy

    rotationStrategy

    rotation strategy

    settings

    hdfs writing settings

    classK

    a key class

    classV

    a value class