pyspark.sql.streaming.StreamingQuery.awaitTermination¶
-
StreamingQuery.
awaitTermination
(timeout=None)[source]¶ Waits for the termination of this query, either by
query.stop()
or by an exception. If the query has terminated with an exception, then the exception will be thrown. If timeout is set, it returns whether the query has terminated or not within the timeout seconds.If the query has terminated, then all subsequent calls to this method will either return immediately (if the query was terminated by
stop()
), or throw the exception immediately (if the query has terminated with exception).throws
StreamingQueryException
, if this query has terminated with an exceptionNew in version 2.0.