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
fix: enable all features for vortex-mask docsrs and enable serde-deri…
…ve when serde is enabled (#5871)
Signed-off-by: Robert Kruszewski <github@robertk.io>
FIx java bindings packaging (#5008)
Seems to work
[here](https://github.com/vortex-data/vortex/actions/runs/18659973729/job/53197925411).
My general thinking is that `setup-protoc` runs on the provided
`container` config that's required only for the JNI build. That image
lacks unzip, so we just install it.
Signed-off-by: Adam Gutglick <adam@spiraldb.com>
Refresh some flatbuffer code (#4745)
Regenerated with a new `flatc` version which generates nicer more
2024-edition-friendly edition code.
---------
Signed-off-by: Adam Gutglick <adam@spiraldb.com>
Dispatch each I/O request (#4464)
An attempt at short-term fix for
#4400
The coalescing driver was spawned as a single task, and so landed on a
single thread of the I/O dispatcher regardless of how many threads you
gave it. This PR spawns each read request to allow other threads a
chance to play ball.
The reason the Polars patch doesn't work is that we need to continue to
dispatch work in order to provide a Tokio runtime within non-Tokio
clients, such as DuckDB. This is a bigger change as part of #4406