lastProgress (StreamingQuery)

Vrátí nejnovější StreamingQueryProgress aktualizaci tohoto streamovacího dotazu nebo None pokud nedošlo k žádným aktualizacím průběhu.

Návraty

StreamingQueryProgress nebo None

Příklady

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