Package

io

eels

Permalink

package eels

Visibility
  1. Public
  2. All

Type Members

  1. trait Aggregation extends AnyRef

    Permalink
  2. trait CloseableIterator[+T] extends AnyRef

    Permalink
  3. case class DataTypeRule(pattern: String, dataType: DataType, nullable: Boolean = true) extends Product with Serializable

    Permalink
  4. abstract class DefaultAggregation extends Aggregation

    Permalink
  5. case class FilePattern(pattern: String, filter: (Path) ⇒ Boolean = _ => true) extends Logging with Product with Serializable

    Permalink
  6. trait Frame extends AnyRef

    Permalink
  7. trait GroupedFrame extends AnyRef

    Permalink
  8. trait Listener extends AnyRef

    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 file in a multi-file source, or a single table in a multi-table source. Splitting sources into parts allows them to be read concurrently, therefore, implementations must ensure that different parts can be safely read in parallel. A single part is always read by a single thread.

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

    Permalink
  11. class RowBuilder extends AnyRef

    Permalink
  12. trait SchemaInferrer extends AnyRef

    Permalink
  13. trait Sink extends Using

    Permalink
  14. trait SinkWriter extends AnyRef

    Permalink
  15. trait Source extends Logging

    Permalink

    A Source is a provider of data.

    A Source is a provider of data.

    A source implementation must provide two methods:

    1: schema() which returns an eel schema for the data source.

    2: parts() which returns zero or more Part instances representing the data.

    A part instance is a subset of the data in a Source, and allows for concurrent reading of that data. For example a part could be a single file in a multi-file source, or a partition in a partitioned source.

  16. class SourceFrame extends Frame with Logging

    Permalink

Value Members

  1. object Aggregation

    Permalink
  2. object CloseableIterator

    Permalink
  3. object Constants

    Permalink
  4. object FilePattern extends Serializable

    Permalink
  5. object Frame

    Permalink
  6. object GroupedFrame

    Permalink
  7. object HdfsOps extends Logging

    Permalink
  8. object MetricsSystem

    Permalink
  9. object NoopListener extends Listener

    Permalink
  10. object Row extends Serializable

    Permalink
  11. object RowUtils

    Permalink
  12. object SchemaInferrer

    Permalink
  13. object SourceFrame

    Permalink
  14. object StringInferrer extends SchemaInferrer

    Permalink
  15. package actions

    Permalink
  16. package coercion

    Permalink
  17. package schema

    Permalink
  18. package util

    Permalink

Ungrouped