Нотатка
Доступ до цієї сторінки потребує авторизації. Можна спробувати ввійти або змінити каталоги.
Доступ до цієї сторінки потребує авторизації. Можна спробувати змінити каталоги.
Returns the most recent StreamingQueryProgress update of this streaming query, or None if there have been no progress updates.
Returns
StreamingQueryProgress or None
Examples
sdf = spark.readStream.format("rate").load()
sq = sdf.writeStream.format('memory').queryName('this_query').start()
sq.lastProgress
sq.stop()