メインコンテンツまでスキップ

lastProgress (StreamingQuery)

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

戻り値

StreamingQueryProgress または None

Python
sdf = spark.readStream.format("rate").load()
sq = sdf.writeStream.format('memory').queryName('this_query').start()
sq.lastProgress
sq.stop()
このページの見出し