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
Right now, the async reader "blocks" the thread when decompressing chunks of data (and there might also be other things blocking the thread, like generating the record batches, I'm not sure but something is taking a significant amount of time).
I think the right way to do this is to spawn a tokio blocking task for the part where the chunks is decompressed and everything that follows, so that the async reader can truly be async.
The text was updated successfully, but these errors were encountered:
Right now, the async reader "blocks" the thread when decompressing chunks of data (and there might also be other things blocking the thread, like generating the record batches, I'm not sure but something is taking a significant amount of time).
I think the right way to do this is to spawn a tokio blocking task for the part where the chunks is decompressed and everything that follows, so that the async reader can truly be async.
The text was updated successfully, but these errors were encountered: