Package

io

eels

Permalink

package eels

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. eels
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. trait Buffer extends AnyRef

    Permalink

    A Buffer represents a stream of Rows, read one row at a time.

    A Buffer represents a stream of Rows, read one row at a time. A Buffer is thread safe, that is, multiple iterators can be created and accessed concurrently from the same source buffer.

  2. case class Column(name: String, type: SchemaType, nullable: Boolean, precision: Int = 0, scale: Int = 0, signed: Boolean = true, comment: Option[String] = None) extends Product with Serializable

    Permalink
  3. trait Converter[T] extends AnyRef

    Permalink
  4. case class Database(name: String, tables: Seq[Table]) extends Product with Serializable

    Permalink
  5. case class FilePattern(pattern: String, filter: Option[(Path) ⇒ Boolean] = None) extends StrictLogging with Product with Serializable

    Permalink
  6. trait Frame extends AnyRef

    Permalink
  7. class FrameSource extends Frame with Logging with Using

    Permalink
  8. type InternalRow = Seq[Any]

    Permalink
  9. trait Part extends AnyRef

    Permalink

    A Part represents part of the source data.

    A Part represents part of the source data. Eg a single path in a multifile source, or a single table in a multitable source. A part provides a reader for that source when requested.

  10. case class Row(schema: Schema, values: Seq[Any]) extends Product with Serializable

    Permalink
  11. case class Schema(columns: List[Column]) extends Product with Serializable

    Permalink
  12. sealed trait SchemaType extends AnyRef

    Permalink
  13. trait Sink extends AnyRef

    Permalink
  14. trait SinkParser extends AnyRef

    Permalink
  15. trait SinkWriter extends AnyRef

    Permalink
  16. trait Source extends Logging

    Permalink
  17. trait SourceParser extends AnyRef

    Permalink
  18. trait SourceReader extends AnyRef

    Permalink

    A one time usable reader of data.

    A one time usable reader of data. Clients must call close() when terminating the reader, even if the end of the iterator has been reached.

  19. class SqlContext extends AnyRef

    Permalink
  20. case class Table(name: String, columns: Column, partitionKeys: Seq[PartitionKey], props: Map[String, String]) extends Product with Serializable

    Permalink

Value Members

  1. object Column extends Serializable

    Permalink
  2. object Constants

    Permalink
  3. object Converter extends Logging

    Permalink
  4. object FilePattern extends Serializable

    Permalink
  5. object Frame

    Permalink
  6. object HdfsIterator

    Permalink
  7. object HdfsOps

    Permalink
  8. object InternalRow

    Permalink
  9. object MetricsSystem

    Permalink
  10. object PathIterator

    Permalink
  11. object Row extends Serializable

    Permalink
  12. object RowUtils

    Permalink
  13. object Schema extends Serializable

    Permalink
  14. object SchemaFn

    Permalink
  15. object SchemaType

    Permalink
  16. object SinkParser

    Permalink
  17. object Source

    Permalink
  18. object SourceParser

    Permalink
  19. object SqlContext

    Permalink
  20. package component

    Permalink
  21. package plan

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped