Skip to main content

lastProgress (StreamingQuery)

Returns the most recent StreamingQueryProgress update of this streaming query, or None if there have been no progress updates.

Returns

StreamingQueryProgress or None

Examples

Python
sdf = spark.readStream.format("rate").load()
sq = sdf.writeStream.format('memory').queryName('this_query').start()
sq.lastProgress
sq.stop()
On this page