nxcals.api.extraction.data.builders.DataFrame.isStreaming
- property DataFrame.isStreaming: bool
Returns
True
if thisDataFrame
contains one or more sources that continuously return data as it arrives. ADataFrame
that reads data from a streaming source must be executed as aStreamingQuery
using thestart()
method inDataStreamWriter
. Methods that return a single answer, (e.g.,count()
orcollect()
) will throw anAnalysisException
when there is a streaming source present.New in version 2.0.0.
Changed in version 3.4.0: Supports Spark Connect.
Notes
This API is evolving.
- Returns:
Whether it’s streaming DataFrame or not.
- Return type:
bool
Examples
>>> df = spark.readStream.format("rate").load() >>> df.isStreaming True