Packages

o

org.apache.spark.sql.execution.streaming

NoOpWatermarkPropagator

object NoOpWatermarkPropagator extends WatermarkPropagator

Do nothing. This is dummy implementation to help creating a dummy IncrementalExecution instance.

Linear Supertypes
WatermarkPropagator, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NoOpWatermarkPropagator
  2. WatermarkPropagator
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def getInputWatermarkForEviction(batchId: Long, stateOpId: Long): Long

    Provide the calculated input watermark for eviction for given stateful operator.

    Provide the calculated input watermark for eviction for given stateful operator.

    Definition Classes
    NoOpWatermarkPropagatorWatermarkPropagator
  11. def getInputWatermarkForLateEvents(batchId: Long, stateOpId: Long): Long

    Provide the calculated input watermark for late events for given stateful operator.

    Provide the calculated input watermark for late events for given stateful operator.

    Definition Classes
    NoOpWatermarkPropagatorWatermarkPropagator
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def propagate(batchId: Long, plan: SparkPlan, originWatermark: Long): Unit

    Request to propagate watermark among operators based on origin watermark value.

    Request to propagate watermark among operators based on origin watermark value. The result should be input watermark per stateful operator, which Spark will request the value by calling getInputWatermarkXXX with operator ID.

    It is recommended for implementation to cache the result, as Spark can request the propagation multiple times with the same batch ID and origin watermark value.

    Definition Classes
    NoOpWatermarkPropagatorWatermarkPropagator
  18. def purge(batchId: Long): Unit

    Request to clean up cached result on propagation.

    Request to clean up cached result on propagation. Spark will call this method when the given batch ID will be likely to be not re-executed.

    Definition Classes
    NoOpWatermarkPropagatorWatermarkPropagator
  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from WatermarkPropagator

Inherited from AnyRef

Inherited from Any

Ungrouped