rudb_vector/chunk.rs
1//! A batch of columns, which is the unit every operator passes to the next one.
2//!
3//! A chunk is some vectors of the same length plus that length. It is not a table and it is not a
4//! result set: it is at most [`VECTOR_SIZE`] rows, because the whole point of the number in
5//! `spec/04-architecture.md` section 4.3 is that a batch of this width stays in L1 while an
6//! operator works on it, and a type that can hold ten times that many rows is a type that lets an
7//! operator quietly stop being vectorized.
8//!
9//! The row count is stored rather than derived, which matters for the one case that looks like a
10//! mistake and is not. `SELECT count(*) FROM t` scans no columns, so the chunk the scan produces
11//! has no vectors in it and still has to say how many rows went past, and a chunk that derived its
12//! length from its first column would say zero.
13
14use rudb_common::{Error, LogicalType, Result, Value};
15
16use crate::selection::Selection;
17use crate::vector::{VECTOR_SIZE, Vector};
18
19/// A batch of columns of equal length.
20#[derive(Debug, Clone, PartialEq)]
21pub struct Chunk {
22 columns: Vec<Vector>,
23 rows: usize,
24}
25
26/// The scheduler's half of the data plane contract, imposed now rather than at layer eight.
27///
28/// `spec/engine/03-data-plane.md` section 3.10. A chunk is what one thread hands another, so a chunk
29/// is `Send`, and that is not free: it rules out an `Rc` anywhere in a vector, it rules out a borrow
30/// of thread local state, and it is what the pin handle in [`Buffer`](crate::Buffer) is protecting
31/// against a lifetime parameter.
32///
33/// It is a static assertion rather than a comment because the failure mode is quiet. Every one of
34/// those mistakes compiles perfectly well on its own and is only a problem the day a chunk is put in
35/// a queue, which is eight layers from here and far too late to be told. This way the build breaks
36/// on the commit that introduces it.
37const _: () = {
38 const fn assert_send<T: Send>() {}
39 assert_send::<Chunk>();
40};
41
42impl Chunk {
43 /// A chunk of `columns`, taking the row count from the first of them.
44 ///
45 /// # Errors
46 ///
47 /// If the columns are not all the same length, or if there are more rows than [`VECTOR_SIZE`].
48 pub fn new(columns: Vec<Vector>) -> Result<Self> {
49 let rows = columns.first().map_or(0, Vector::len);
50 Self::with_rows(columns, rows)
51 }
52
53 /// A chunk of `columns` that is `rows` long, for the case where there are no columns to take
54 /// the count from.
55 ///
56 /// # Errors
57 ///
58 /// If any column is not `rows` long, or if `rows` is more than [`VECTOR_SIZE`].
59 pub fn with_rows(columns: Vec<Vector>, rows: usize) -> Result<Self> {
60 if rows > VECTOR_SIZE {
61 return Err(Error::internal(format!(
62 "a chunk of {rows} rows is longer than the {VECTOR_SIZE} row vector"
63 )));
64 }
65 for (index, column) in columns.iter().enumerate() {
66 if column.len() != rows {
67 return Err(Error::internal(format!(
68 "column {index} of a chunk is {} rows and the chunk is {rows}",
69 column.len()
70 )));
71 }
72 }
73 Ok(Self { columns, rows })
74 }
75
76 /// A chunk of the given types with no rows in it.
77 ///
78 /// What a scan of an empty table returns and what an operator returns when it is done. The
79 /// types are kept, because a consumer asks a chunk what its columns are before it asks whether
80 /// there are any.
81 #[must_use]
82 pub fn empty(types: &[LogicalType]) -> Self {
83 let columns =
84 types.iter().map(|ty| Vector::constant(ty.clone(), Value::Null, 0)).collect::<Vec<_>>();
85 Self { columns, rows: 0 }
86 }
87
88 /// The columns.
89 #[must_use]
90 pub fn columns(&self) -> &[Vector] {
91 &self.columns
92 }
93
94 /// One column.
95 ///
96 /// # Errors
97 ///
98 /// If there is no column at `index`.
99 pub fn column(&self, index: usize) -> Result<&Vector> {
100 self.columns.get(index).ok_or_else(|| {
101 Error::internal(format!(
102 "column {index} of a chunk that has {} columns",
103 self.columns.len()
104 ))
105 })
106 }
107
108 /// The columns, given up.
109 #[must_use]
110 pub fn into_columns(self) -> Vec<Vector> {
111 self.columns
112 }
113
114 /// How many columns.
115 #[must_use]
116 pub fn width(&self) -> usize {
117 self.columns.len()
118 }
119
120 /// How many rows.
121 #[must_use]
122 pub fn len(&self) -> usize {
123 self.rows
124 }
125
126 /// Whether there are no rows.
127 #[must_use]
128 pub fn is_empty(&self) -> bool {
129 self.rows == 0
130 }
131
132 /// How many bytes of memory this chunk is holding.
133 ///
134 /// What the memory limit charges for a chunk somebody kept. A chunk handed from one operator to
135 /// the next and dropped is not charged at all, because charging it would count the same
136 /// megabyte once per level of the tree, and the levels of the tree are not where a query runs
137 /// out of memory.
138 ///
139 /// Every size in this workspace counts the thing itself as well as what it owns, so a column's
140 /// own bytes are already in its own number and are not added again here.
141 #[must_use]
142 pub fn footprint(&self) -> usize {
143 size_of::<Self>() + self.columns.iter().map(Vector::footprint).sum::<usize>()
144 }
145
146 /// The type of each column.
147 #[must_use]
148 pub fn types(&self) -> Vec<LogicalType> {
149 self.columns.iter().map(|column| column.logical_type().clone()).collect()
150 }
151
152 /// Validate every storage-backed value reachable from this chunk.
153 pub fn validate_external(&self) -> Result<()> {
154 self.columns.iter().try_for_each(Vector::validate_external)
155 }
156
157 /// The value at a row and a column, or null if either is past the end.
158 ///
159 /// The slow path, same as [`Vector::value_at`]. It is what a result set is read out with and
160 /// what a test asserts on.
161 #[must_use]
162 pub fn value_at(&self, row: usize, column: usize) -> Value {
163 match self.columns.get(column) {
164 Some(held) => held.value_at(row),
165 None => Value::Null,
166 }
167 }
168
169 /// The value at a row and column, preserving storage read and validation failures.
170 pub fn try_value_at(&self, row: usize, column: usize) -> Result<Value> {
171 match self.columns.get(column) {
172 Some(held) => held.try_value_at(row),
173 None => Ok(Value::Null),
174 }
175 }
176
177 /// One row, left to right.
178 pub fn row(&self, row: usize) -> impl Iterator<Item = Value> + '_ {
179 self.columns.iter().map(move |column| column.value_at(row))
180 }
181
182 /// The rows a selection kept, without moving any of the values.
183 ///
184 /// Every column becomes a dictionary vector whose codes are the selection, which is the form
185 /// `spec/07-execution.md` section 7.1 asks a filter to produce rather than compacting. It takes
186 /// the chunk by value because that is what makes it free: the payload is moved into the new
187 /// vector rather than copied, so a filter that keeps one row in a thousand still costs the
188 /// selection and nothing else.
189 ///
190 /// A column that is already a stable dictionary is the one exception, and it composes the two
191 /// levels of codes instead of stacking them. Stacking is just as cheap here and it hides the
192 /// thing that matters: a stable dictionary is a promise that codes from separate chunks name the
193 /// same values, and the aggregate, the group key store and the string kernels all read that
194 /// promise off the outermost body. Wrapping it in a second dictionary breaks the promise, so a
195 /// `GROUP BY SearchPhrase` behind a `WHERE SearchPhrase <> ''` fell off the code path and hashed
196 /// strings instead, which measured at 30 ms of processor time against 4 ms for the same group by
197 /// with nothing in front of it. Composing costs one lookup per kept row and keeps the promise.
198 ///
199 /// # Errors
200 ///
201 /// If the selection points past the end of the chunk.
202 pub fn select(self, selection: &Selection) -> Result<Self> {
203 if let Some(bad) = selection.iter().find(|&index| index >= self.rows) {
204 return Err(Error::internal(format!(
205 "a selection keeps row {bad} of a chunk that has {} rows",
206 self.rows
207 )));
208 }
209 let rows = selection.len();
210 let codes = selection.indices();
211 let mut columns = Vec::with_capacity(self.columns.len());
212 for column in self.columns {
213 if column.stable_dictionary_parts().is_some() {
214 columns.push(column.gather(codes)?);
215 } else {
216 columns.push(Vector::dictionary(codes.to_vec(), column)?);
217 }
218 }
219 Self::with_rows(columns, rows)
220 }
221
222 /// The rows a selection kept, copied, so that nothing downstream reads through an indirection.
223 ///
224 /// The copying counterpart to [`Self::select`], and the two exist because neither one is right
225 /// twice. Which one to call is measured rather than argued, and the measurement says something
226 /// other than what the argument does, so here is both.
227 ///
228 /// The argument is that selecting pays nothing now and one redirection on every later read of
229 /// every kept row, while compacting pays a copy now and nothing afterwards, so the deciding
230 /// variable is selectivity: keep a few rows and select, keep most of them and compact. The
231 /// measurement says the deciding variable is not selectivity at all, it is how many times the
232 /// rows are read again afterwards, and selectivity barely moves the line. On server3, over a
233 /// chunk of two integer columns, compacting loses to selecting at every selectivity from one
234 /// percent to a hundred when there is one later pass over the kept rows, and beats it at every
235 /// selectivity from one percent to a hundred when there are sixteen. With four later passes the
236 /// two are within a few percent of each other everywhere. Put a varchar column in the chunk and
237 /// compaction loses almost everywhere, because copying string bytes is most of what it costs and
238 /// the dictionary it avoids is most of what it saves.
239 ///
240 /// Which is why nothing in the streaming pipeline calls this yet. A filter today feeds an
241 /// aggregate or a projection and that is one pass or two, and end to end on two million rows
242 /// `SELECT sum(a), sum(b), count(*) FROM t WHERE a > ?` measures the same either way at one
243 /// percent selectivity and fifty percent slower compacting at fifty percent selectivity. The
244 /// operators that will want this are the ones that hold chunks rather than pass them on, the
245 /// hash join build side and the sort, because a chunk that is kept alive as a selection keeps
246 /// the whole chunk it was selected from alive with it, and that is a hundred to one on memory
247 /// rather than a few percent on time.
248 ///
249 /// Takes the chunk by value like [`Self::select`] does, even though the payload is copied rather
250 /// than moved, because a caller that still wanted the original after compacting it would be
251 /// holding both copies and should say so.
252 ///
253 /// # Errors
254 ///
255 /// If the selection points past the end of the chunk, or if a column has a type there is no
256 /// vector for, which today means `ARRAY` and `UNION`.
257 pub fn compact(self, selection: &Selection) -> Result<Self> {
258 if let Some(bad) = selection.iter().find(|&index| index >= self.rows) {
259 return Err(Error::internal(format!(
260 "a selection keeps row {bad} of a chunk that has {} rows",
261 self.rows
262 )));
263 }
264 let rows = selection.len();
265 let indices = selection.indices();
266 let mut columns = Vec::with_capacity(self.columns.len());
267 for column in &self.columns {
268 columns.push(column.gather(indices)?);
269 }
270 Self::with_rows(columns, rows)
271 }
272
273 /// The columns at the given positions, in that order.
274 ///
275 /// A position may appear twice, which is what `SELECT x, x FROM t` is, and the second one costs
276 /// a copy. Every other position is moved.
277 ///
278 /// # Errors
279 ///
280 /// If a position is past the end of the chunk.
281 pub fn project(self, positions: &[usize]) -> Result<Self> {
282 let width = self.columns.len();
283 if let Some(&bad) = positions.iter().find(|&&position| position >= width) {
284 return Err(Error::internal(format!(
285 "column {bad} of a chunk that has {width} columns"
286 )));
287 }
288 let rows = self.rows;
289 let mut sources: Vec<Option<Vector>> = self.columns.into_iter().map(Some).collect();
290 let mut columns = Vec::with_capacity(positions.len());
291 for (at, &position) in positions.iter().enumerate() {
292 let last_use = !positions[at + 1..].contains(&position);
293 let taken = if last_use { sources[position].take() } else { sources[position].clone() };
294 match taken {
295 Some(column) => columns.push(column),
296 // Only reachable if the last-use bookkeeping above is wrong, since a position is
297 // taken on its last appearance and cloned on every earlier one.
298 None => {
299 return Err(Error::internal(format!("column {position} was taken twice")));
300 }
301 }
302 }
303 Self::with_rows(columns, rows)
304 }
305
306 /// The same rows with every column in flat form.
307 ///
308 /// Costs a copy per column that was not already flat. It is here for the result set at the top
309 /// of a query, where the dictionary vectors a filter left behind would otherwise be handed to a
310 /// caller who has to understand them.
311 ///
312 /// # Errors
313 ///
314 /// If a column has a type there is no vector for, which today means `ARRAY` and `UNION`. A `LIST`
315 /// and a `MAP` flatten to themselves and a `STRUCT` to a struct of flattened fields, since none of
316 /// the three has a data slice for a caller to read and there is nothing flatter to become.
317 pub fn flatten(&self) -> Result<Self> {
318 let mut columns = Vec::with_capacity(self.columns.len());
319 for column in &self.columns {
320 // flatten: this is the chunk wide version of the vector call and it exists so that the
321 // one caller at the top of a query can say it once instead of per column. Whether the
322 // copy is deserved is decided where this is called from, which today is one line in
323 // `rudb::database`, and that line says why.
324 columns.push(column.flatten()?);
325 }
326 Self::with_rows(columns, self.rows)
327 }
328}
329
330#[cfg(test)]
331mod tests {
332 use std::sync::Arc;
333
334 use rudb_common::LogicalType;
335
336 use super::*;
337 use crate::vector::{Data, Form};
338
339 fn integers(values: &[i32]) -> Vector {
340 Vector::flat(LogicalType::Integer, Data::Int32(values.to_vec().into()))
341 .expect("integers are an i32 layout")
342 }
343
344 #[test]
345 fn a_chunk_takes_its_length_from_its_columns() {
346 let chunk = Chunk::new(vec![integers(&[1, 2, 3]), integers(&[4, 5, 6])])
347 .expect("two columns of three");
348 assert_eq!(chunk.len(), 3);
349 assert_eq!(chunk.width(), 2);
350 assert_eq!(chunk.value_at(2, 1), Value::Integer(6));
351 }
352
353 #[test]
354 fn a_ragged_chunk_is_caught() {
355 let error = Chunk::new(vec![integers(&[1, 2, 3]), integers(&[4])])
356 .expect_err("a chunk is not ragged");
357 assert!(error.message().contains("column 1"), "{error}");
358 }
359
360 /// `SELECT count(*) FROM t` scans no columns and the row count still has to survive, which is
361 /// the reason the length is a field rather than the first column's length.
362 #[test]
363 fn a_chunk_with_no_columns_can_still_have_rows() {
364 let chunk = Chunk::with_rows(Vec::new(), 900).expect("no columns and nine hundred rows");
365 assert_eq!(chunk.len(), 900);
366 assert_eq!(chunk.width(), 0);
367 assert!(!chunk.is_empty(), "nine hundred rows is not empty");
368 }
369
370 #[test]
371 fn a_chunk_longer_than_a_vector_is_caught() {
372 let error = Chunk::with_rows(Vec::new(), VECTOR_SIZE + 1).expect_err("too long");
373 assert!(error.message().contains("longer than"), "{error}");
374 }
375
376 #[test]
377 fn an_empty_chunk_keeps_its_types() {
378 let chunk = Chunk::empty(&[LogicalType::Integer, LogicalType::Varchar]);
379 assert_eq!(chunk.len(), 0);
380 assert_eq!(chunk.types(), vec![LogicalType::Integer, LogicalType::Varchar]);
381 }
382
383 #[test]
384 fn selecting_keeps_the_rows_it_selected_and_no_others() {
385 let chunk = Chunk::new(vec![integers(&[10, 20, 30, 40]), integers(&[1, 2, 3, 4])])
386 .expect("four rows");
387 let kept = Selection::from_predicate(4, |index| index % 2 == 1);
388 let chunk = chunk.select(&kept).expect("rows one and three exist");
389 assert_eq!(chunk.len(), 2);
390 assert_eq!(chunk.row(0).collect::<Vec<_>>(), vec![Value::Integer(20), Value::Integer(2)]);
391 assert_eq!(chunk.row(1).collect::<Vec<_>>(), vec![Value::Integer(40), Value::Integer(4)]);
392 }
393
394 /// The reason `select` takes the chunk by value. If it copied the payload then a filter would
395 /// cost the same as a compaction and the selection would be a pure loss.
396 #[test]
397 fn selecting_leaves_the_values_where_they_were() {
398 let chunk = Chunk::new(vec![integers(&[10, 20, 30, 40])]).expect("four rows");
399 let kept = Selection::from_predicate(4, |index| index == 0);
400 let chunk = chunk.select(&kept).expect("row zero exists");
401 assert_eq!(chunk.column(0).expect("one column").form(), Form::Dictionary);
402 }
403
404 /// The promise a stable dictionary makes is about the outermost body, so a filter in front of a
405 /// group by has to compose the codes rather than stack a second dictionary on top of them.
406 #[test]
407 fn selecting_a_stable_dictionary_composes_the_codes_instead_of_stacking_them() {
408 let values = Arc::new(integers(&[10, 20, 30]));
409 let column = Vector::stable_dictionary(vec![2, 0, 1, 2], values).expect("three codes");
410 let chunk = Chunk::new(vec![column]).expect("four rows");
411 let kept = Selection::from_predicate(4, |index| index % 2 == 1);
412 let chunk = chunk.select(&kept).expect("rows one and three exist");
413 let column = chunk.column(0).expect("one column");
414 let (codes, values) = column.stable_dictionary_parts().expect("still a stable dictionary");
415 assert_eq!(codes, [0, 2]);
416 assert_eq!(values.len(), 3);
417 assert_eq!(column.value_at(0), Value::Integer(10));
418 assert_eq!(column.value_at(1), Value::Integer(30));
419 }
420
421 #[test]
422 fn a_selection_past_the_end_is_caught() {
423 let chunk = Chunk::new(vec![integers(&[1, 2])]).expect("two rows");
424 let mut kept = Selection::empty();
425 kept.push(7);
426 let error = chunk.select(&kept).expect_err("row seven does not exist");
427 assert!(error.message().contains("row 7"), "{error}");
428 }
429
430 /// The two halves of section 7.1's decision have to answer the same question the same way, or
431 /// the threshold between them is a place where a query changes its answer.
432 #[test]
433 fn compacting_keeps_the_same_rows_selecting_does_and_leaves_no_indirection() {
434 let chunk = Chunk::new(vec![integers(&[10, 20, 30, 40]), integers(&[1, 2, 3, 4])])
435 .expect("four rows");
436 let kept = Selection::from_predicate(4, |index| index % 2 == 1);
437 let selected = chunk.clone().select(&kept).expect("rows one and three exist");
438 let compacted = chunk.compact(&kept).expect("rows one and three exist");
439 assert_eq!(compacted.len(), selected.len());
440 for row in 0..compacted.len() {
441 assert_eq!(
442 compacted.row(row).collect::<Vec<_>>(),
443 selected.row(row).collect::<Vec<_>>()
444 );
445 }
446 assert_eq!(compacted.column(0).expect("one column").form(), Form::Flat);
447 }
448
449 #[test]
450 fn a_selection_past_the_end_is_caught_by_compacting_too() {
451 let chunk = Chunk::new(vec![integers(&[1, 2])]).expect("two rows");
452 let mut kept = Selection::empty();
453 kept.push(7);
454 let error = chunk.compact(&kept).expect_err("row seven does not exist");
455 assert!(error.message().contains("row 7"), "{error}");
456 }
457
458 #[test]
459 fn projecting_reorders_and_can_repeat_a_column() {
460 let chunk = Chunk::new(vec![integers(&[1, 2]), integers(&[3, 4])]).expect("two by two");
461 let chunk = chunk.project(&[1, 0, 1]).expect("both columns exist");
462 assert_eq!(chunk.width(), 3);
463 assert_eq!(
464 chunk.row(0).collect::<Vec<_>>(),
465 vec![Value::Integer(3), Value::Integer(1), Value::Integer(3)]
466 );
467 }
468
469 #[test]
470 fn projecting_a_column_that_is_not_there_is_caught() {
471 let chunk = Chunk::new(vec![integers(&[1, 2])]).expect("one column");
472 let error = chunk.project(&[0, 4]).expect_err("there is no column four");
473 assert!(error.message().contains("column 4"), "{error}");
474 }
475
476 #[test]
477 fn flattening_a_selected_chunk_gives_the_same_values() {
478 let chunk = Chunk::new(vec![integers(&[10, 20, 30])]).expect("three rows");
479 let kept = Selection::from_predicate(3, |index| index != 1);
480 let selected = chunk.select(&kept).expect("rows zero and two exist");
481 let flat = selected.flatten().expect("integers flatten");
482 assert_eq!(flat.column(0).expect("one column").form(), Form::Flat);
483 for row in 0..flat.len() {
484 assert_eq!(flat.value_at(row, 0), selected.value_at(row, 0), "row {row}");
485 }
486 }
487
488 #[test]
489 fn a_chunk_costs_what_its_columns_cost() {
490 let chunk = Chunk::new(vec![integers(&[1; 1000]), integers(&[2; 1000])])
491 .expect("two columns of a thousand");
492 let columns: usize = chunk.columns().iter().map(Vector::footprint).sum();
493 assert_eq!(chunk.footprint(), size_of::<Chunk>() + columns);
494 assert!(chunk.footprint() >= 8000, "two thousand i32: {}", chunk.footprint());
495 }
496}