PySparkリファレンスクラスストリーミングクエリ最終進捗状況このページの見出しlastProgress (StreamingQuery) このストリーミングクエリの最新の更新StreamingQueryProgressを返します。進捗状況の更新がない場合はNone返します。 戻り値 StreamingQueryProgress または None 例 Pythonsdf = spark.readStream.format("rate").load()sq = sdf.writeStream.format('memory').queryName('this_query').start()sq.lastProgresssq.stop()