object HdfsSource
- Source
- HdfsSource.scala
- Alphabetic
- By Inheritance
- HdfsSource
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- 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
- 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
- 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
- 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
- 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