Packages

package state

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class FingerprintsProducer extends CommitProducer with ContextLogging

    Commit producer that publishes in the state layer the fingerprints of the compilation, constructed from both source code and configuration.

  2. class StateSerializer[K, V] extends AnyRef

    Serializes the compiler state represented as RDD[K, V] to/from an RDD[K, Payload].

    Serializes the compiler state represented as RDD[K, V] to/from an RDD[K, Payload]. The compiler-specific serializer for a single spark partition needs to be defined when instantiating class. This class saves tha state in a deterministic way by:

    - partitioning by key - sorting by key inside the partitions

    K

    the type of the state key, to write the state in a stable way this type must have an ordering

    V

    the type of the state values

Ungrouped