You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a sink: QueueSink is used to collect and sequentially process all incoming dataframes via sink.get() function, only None is returned. When using sink.queue.get() the dataframes are returned. This is probably, because sink.get() does not acquire the queues lock = it is not thread-safe. We should either make it thread-safe, or remove the get() function.
The text was updated successfully, but these errors were encountered:
If a
sink: QueueSink
is used to collect and sequentially process all incoming dataframes viasink.get()
function, only None is returned. When usingsink.queue.get()
the dataframes are returned. This is probably, becausesink.get()
does not acquire the queues lock = it is not thread-safe. We should either make it thread-safe, or remove the get() function.The text was updated successfully, but these errors were encountered: