Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Blocks until all available data in the source has been processed and committed to the sink. Intended for testing.
Syntax
processAllAvailable()
Returns
None
Notes
In the case of continually arriving data, this method may block forever. This method is only guaranteed to block until data that has been synchronously appended to a stream source prior to invocation (that is, getOffset must immediately reflect the addition).
Examples
sdf = spark.readStream.format("rate").load()
sq = sdf.writeStream.format('memory').queryName('this_query').start()
sq.processAllAvailable()
sq.stop()