lastProgress (StreamingQuery)

Retourneert de meest recente StreamingQueryProgress update van deze streamingquery of None als er geen voortgangsupdates zijn.

Retouren

StreamingQueryProgress of None

Examples

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