lastProgress (StreamingQuery)

このストリーミング クエリの最新の StreamingQueryProgress 更新プログラムを返します。進行状況の更新がない場合は None します。

返品

StreamingQueryProgress または None

例示

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