Interface used to load a streaming Dataset
from external storage systems (e.g.
:: Experimental ::
Interface used to write a streaming Dataset
to external storage systems (e.g.
:: Experimental ::
Interface used to write a streaming Dataset
to external storage systems (e.g. file systems,
key-value stores, etc). Use Dataset.writeStream
to access this.
2.0.0
:: Experimental :: A trigger that runs a query periodically based on the processing time.
:: Experimental ::
A trigger that runs a query periodically based on the processing time. If interval
is 0,
the query will run as fast as possible.
Scala Example:
df.write.trigger(ProcessingTime("10 seconds")) import scala.concurrent.duration._ df.write.trigger(ProcessingTime(10.seconds))
Java Example:
df.write.trigger(ProcessingTime.create("10 seconds")) import java.util.concurrent.TimeUnit df.write.trigger(ProcessingTime.create(10, TimeUnit.SECONDS))
2.0.0
:: Experimental :: Information about progress made for a sink in the execution of a StreamingQuery during a trigger.
:: Experimental :: Information about progress made for a sink in the execution of a StreamingQuery during a trigger. See StreamingQueryProgress for more information.
2.1.0
:: Experimental :: Information about progress made for a source in the execution of a StreamingQuery during a trigger.
:: Experimental :: Information about progress made for a source in the execution of a StreamingQuery during a trigger. See StreamingQueryProgress for more information.
2.1.0
:: Experimental :: Information about updates made to stateful operators in a StreamingQuery during a trigger.
:: Experimental :: Information about updates made to stateful operators in a StreamingQuery during a trigger.
:: Experimental :: A handle to a query that is executing continuously in the background as new data arrives.
:: Experimental :: A handle to a query that is executing continuously in the background as new data arrives. All these methods are thread-safe.
2.0.0
:: Experimental :: Exception that stopped a StreamingQuery.
:: Experimental ::
Exception that stopped a StreamingQuery. Use cause
get the actual exception
that caused the failure.
2.0.0
:: Experimental :: Interface for listening to events related to StreamingQueries.
:: Experimental :: Interface for listening to events related to StreamingQueries.
2.0.0
The methods are not thread-safe as they may be called from different threads.
:: Experimental ::
A class to manage all the StreamingQuery active on a SparkSession
.
:: Experimental ::
A class to manage all the StreamingQuery active on a SparkSession
.
2.0.0
:: Experimental :: Information about progress made in the execution of a StreamingQuery during a trigger.
:: Experimental :: Information about progress made in the execution of a StreamingQuery during a trigger. Each event relates to processing done for a single trigger of the streaming query. Events are emitted even when no new data is available to be processed.
2.1.0
:: Experimental :: Reports information about the instantaneous status of a streaming query.
:: Experimental :: Reports information about the instantaneous status of a streaming query.
2.1.0
:: Experimental :: Used to indicate how often results should be produced by a StreamingQuery.
:: Experimental :: Used to indicate how often results should be produced by a StreamingQuery.
2.0.0
:: Experimental :: Used to create ProcessingTime triggers for StreamingQuerys.
:: Experimental :: Used to create ProcessingTime triggers for StreamingQuerys.
2.0.0
:: Experimental :: Companion object of StreamingQueryListener that defines the listener events.
:: Experimental :: Companion object of StreamingQueryListener that defines the listener events.
2.0.0
Interface used to load a streaming
Dataset
from external storage systems (e.g. file systems, key-value stores, etc). UseSparkSession.readStream
to access this.2.0.0