このクエリの最新の StreamingQueryProgress 更新プログラムの配列を返します。 保持される進行状況の更新の数は、 spark.sql.streaming.numRecentProgressUpdatesによって構成されます。
返品
list of StreamingQueryProgress
例示
sdf = spark.readStream.format("rate").load()
sq = sdf.writeStream.format('memory').queryName('this_query').start()
sq.recentProgress
# [...]
sq.stop()