Package

com.twitter.summingbird.scalding

service

Permalink

package service

Visibility
  1. Public
  2. All

Type Members

  1. class BatchedDeltaService[K, V] extends BatchedService[K, V]

    Permalink

    Use this when you have written JUST BEFORE the store.

    Use this when you have written JUST BEFORE the store. This is what you get from an IntermediateWrite in Builder API.

  2. trait BatchedWindowService[K, V] extends BatchedService[K, V]

    Permalink

    This is a service that has a finite memory.

    This is a service that has a finite memory. There is a materialized stream on disk, but the service only serves the data if: 0 < t(incoming key) - t(service key) < t(window) To use this you need to implement: windowSize readStream batcher ordering reducers

  3. class EmptyService[K, V] extends ExternalService[K, V]

    Permalink
  4. trait SimpleService[K, V] extends ExternalService[K, V]

    Permalink

    A UniqueKeyedService covers the case where Keys are globally unique and either are not present or have one value.

    A UniqueKeyedService covers the case where Keys are globally unique and either are not present or have one value. Examples could be Keys which are Unique IDs, such as UserIDs, content IDs, cryptographic hashes, etc...

  5. trait SimpleWindowedService[K, V] extends BatchedWindowService[K, V]

    Permalink

    More familiar interface to scalding users that creates the Reader from two other methods

  6. trait SourceUniqueKeyedService[S <: scalding.Source, K, V] extends UniqueKeyedService[K, V]

    Permalink
  7. trait UniqueKeyedService[K, V] extends SimpleService[K, V]

    Permalink

    A UniqueKeyedService covers the case where Keys are globally unique and either are not present or have one value.

    A UniqueKeyedService covers the case where Keys are globally unique and either are not present or have one value. Examples could be Keys which are Unique IDs, such as UserIDs, content IDs, cryptographic hashes, etc...

Value Members

  1. object UniqueKeyedService extends Serializable

    Permalink

Ungrouped