Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • List of available models (per data type) - List[String]
  • SpeculativeExecutionStats describing statistics on the speculative execution:

    final case class SpeculativeExecutionStats(
          var name: String,
          decider : String,
          tmout: Long,
          since: Long = System.currentTimeMillis(),
          usage: Long = 0,
          duration: Double = 0.0,
          min: Long = Long.MaxValue,
          max: Long = Long.MinValue

Implementation

An initial implementation and examples for this Flip, they include just basic model serving implementation without speculative piece. Implementation is provided in both Scala and Java. It Implements both key-base and partition-base joins and Tensorflow support for both "optimized" and saved formats. Implementation is split into 2 part:

...