recentProgress (StreamingQuery)

Vrátí pole nejnovějších StreamingQueryProgress aktualizací pro tento dotaz. Počet uchovávaných aktualizací průběhu je nakonfigurován .spark.sql.streaming.numRecentProgressUpdates

Návraty

list of StreamingQueryProgress

Příklady

sdf = spark.readStream.format("rate").load()
sq = sdf.writeStream.format('memory').queryName('this_query').start()
sq.recentProgress
# [...]
sq.stop()