Package

com.spotify.scio

io

Permalink

package io

Visibility
  1. Public
  2. All

Type Members

  1. case class AvroTap[T](path: String, schema: Schema = null)(implicit evidence$2: ClassTag[T]) extends Tap[T] with Product with Serializable

    Permalink

    Tap for Avro files on local file system or GCS.

  2. case class BigQueryTap(table: TableReference) extends Tap[TableRow] with Product with Serializable

    Permalink

    Tap for BigQuery tables.

  3. case class ObjectFileTap[T](path: String)(implicit evidence$3: ClassTag[T]) extends Tap[T] with Product with Serializable

    Permalink

    Tap for object files on local file system or GCS.

  4. case class TFRecordFileTap(path: String) extends Tap[Array[Byte]] with Product with Serializable

    Permalink

    Tap for TensorFlow TFRecord files.

  5. case class TFRecordOptions(compressionType: CompressionType) extends Product with Serializable

    Permalink
  6. case class TableRowJsonTap(path: String) extends Tap[TableRow] with Product with Serializable

    Permalink

    Tap for JSON files on local file system or GCS.

  7. trait Tap[T] extends AnyRef

    Permalink

    Placeholder to an external data set that can either be load into memory as an iterator or opened in a new ScioContext as an SCollection.

  8. class TapNotAvailableException extends Exception

    Permalink

    Exception for when a tap is not available.

  9. trait Taps extends AnyRef

    Permalink

    Utility for managing Future[Tap[T]]s.

  10. case class TextTap(path: String) extends Tap[String] with Product with Serializable

    Permalink

    Tap for text files on local file system or GCS.

Value Members

  1. object TFRecordOptions extends Serializable

    Permalink

    TensorFlow TFRecord options.

  2. object Taps

    Permalink

    Companion object for Taps.

Ungrouped