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
Copy file name to clipboardExpand all lines: src/content/blog/october-2025.mdx
+17-3Lines changed: 17 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,22 @@ excerpt: "Overview of all work happening in Vortex"
6
6
published: true
7
7
---
8
8
9
-
This month a lot of focus has been put on improving correctness using our fuzzer, in revamping arrays to make compute over compressed data and compute over GPUs even better.
9
+
In October, a lot of focus was on revamping Array evaluation to be fully lazy, by converting their execution
10
+
to an Operator model that evaluates into Vectors (fully decompressed, zero-copy to Arrow representation).
11
+
This work enables many more optimizations, and also provides unified abstractions for evaluating on
12
+
different processor types (CPUs & GPUs).
13
+
14
+
In parallel, Vortex added experimental support for a GPU Scan, with fused CUDA kernels for decompressing Vortex data
15
+
directly on-device.
16
+
17
+
For an in-depth view of this work, see the [recent talk on Vortex](https://db.cs.cmu.edu/events/futuredata-vortex/)
18
+
as part of CMU's Future Data Seminar.
10
19
11
20
## Core
12
21
13
-
1. Children of `ZonedLayoutReader` are evaluated lazily. [#5007]()
14
-
1. Introduced our own bit-buffer type, allowing for in-place mutation [#4940]()
22
+
1. Children of `ZonedLayoutReader` are evaluated lazily. [#5007](https://github.com/vortex-data/vortex/pull/5007)
23
+
2. Introduced our own bit-buffer type, allowing for in-place mutation [#4940](https://github.com/vortex-data/vortex/pull/4940)
@@ -23,6 +33,10 @@ You can now try Vortex as part of [dft](https://github.com/datafusion-contrib/da
23
33
24
34
1. Added support for pushing down filters onto fields of struct columns. #5024
25
35
36
+
### DuckDB
37
+
38
+
As of DuckDB 1.4.2, Vortex is included as a core extension in DuckDB. See their [docs](https://duckdb.org/docs/stable/core_extensions/vortex) for more details.
39
+
26
40
## Acknowledgments
27
41
28
42
We want to thank to anyone who has tried Vortex, provided feedback, asked question and filed issues.
0 commit comments