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
When attempting to read data from a directory via Deephaven's Parquet reader, it hangs forever with the spinning wheel in the table display. Doing the same operation in 0.32.0 works as expected.
Steps to reproduce
Build Deephaven Core with example data mounted to /data/examples, or just copy the following directory into your Deephaven installation at /data/examples.
The bug highlighted in this issue got introduced in this commit titled Update web version 0.60.0.
While debugging, I did find a bug that my change introduced and I have pushed a fix here. When I apply my fix and drop the above web version upgrade commit, the use case mentioned in the issue gets resolved. But if I apply my fix on top of the web version upgrade commit, the system still hangs. So it looks like there is some issue in the web version upgrade.
@rcaudy who should I tag for the web version issue?
@rcaudy mentioned that the rendering issue is being tracked here.
from deephaven.parquet import read
source = read("/data/examples/Pems/parquet/pems") # Hangs as highlighted by JJ
source = read("/data/examples/Pems/parquet/pems").coalesce() # This works fine
Description
When attempting to read data from a directory via Deephaven's Parquet reader, it hangs forever with the spinning wheel in the table display. Doing the same operation in 0.32.0 works as expected.
Steps to reproduce
Build Deephaven Core with example data mounted to
/data/examples
, or just copy the following directory into your Deephaven installation at/data/examples
.Then, run the following code:
Expected results
The code to complete running, rendering a table in the UI.
Actual results
The code appears to run fine, but the table never renders in the UI. The "processing" spinning wheel just goes on forever.
Additional details and attachments
If applicable, add any additional screenshots, logs, or other attachments to help explain your problem.
Versions
The text was updated successfully, but these errors were encountered: