Skip to main content

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    /// The value at a row and a column, or null if either is past the end.
153    ///
154    /// The slow path, same as [`Vector::value_at`]. It is what a result set is read out with and
155    /// what a test asserts on.
156    #[must_use]
157    pub fn value_at(&self, row: usize, column: usize) -> Value {
158        match self.columns.get(column) {
159            Some(held) => held.value_at(row),
160            None => Value::Null,
161        }
162    }
163
164    /// One row, left to right.
165    pub fn row(&self, row: usize) -> impl Iterator<Item = Value> + '_ {
166        self.columns.iter().map(move |column| column.value_at(row))
167    }
168
169    /// The rows a selection kept, without moving any of the values.
170    ///
171    /// Every column becomes a dictionary vector whose codes are the selection, which is the form
172    /// `spec/07-execution.md` section 7.1 asks a filter to produce rather than compacting. It takes
173    /// the chunk by value because that is what makes it free: the payload is moved into the new
174    /// vector rather than copied, so a filter that keeps one row in a thousand still costs the
175    /// selection and nothing else.
176    ///
177    /// # Errors
178    ///
179    /// If the selection points past the end of the chunk.
180    pub fn select(self, selection: &Selection) -> Result<Self> {
181        if let Some(bad) = selection.iter().find(|&index| index >= self.rows) {
182            return Err(Error::internal(format!(
183                "a selection keeps row {bad} of a chunk that has {} rows",
184                self.rows
185            )));
186        }
187        let rows = selection.len();
188        let codes = selection.indices();
189        let mut columns = Vec::with_capacity(self.columns.len());
190        for column in self.columns {
191            columns.push(Vector::dictionary(codes.to_vec(), column)?);
192        }
193        Self::with_rows(columns, rows)
194    }
195
196    /// The rows a selection kept, copied, so that nothing downstream reads through an indirection.
197    ///
198    /// The copying counterpart to [`Self::select`], and the two exist because neither one is right
199    /// twice. Which one to call is measured rather than argued, and the measurement says something
200    /// other than what the argument does, so here is both.
201    ///
202    /// The argument is that selecting pays nothing now and one redirection on every later read of
203    /// every kept row, while compacting pays a copy now and nothing afterwards, so the deciding
204    /// variable is selectivity: keep a few rows and select, keep most of them and compact. The
205    /// measurement says the deciding variable is not selectivity at all, it is how many times the
206    /// rows are read again afterwards, and selectivity barely moves the line. On server3, over a
207    /// chunk of two integer columns, compacting loses to selecting at every selectivity from one
208    /// percent to a hundred when there is one later pass over the kept rows, and beats it at every
209    /// selectivity from one percent to a hundred when there are sixteen. With four later passes the
210    /// two are within a few percent of each other everywhere. Put a varchar column in the chunk and
211    /// compaction loses almost everywhere, because copying string bytes is most of what it costs and
212    /// the dictionary it avoids is most of what it saves.
213    ///
214    /// Which is why nothing in the streaming pipeline calls this yet. A filter today feeds an
215    /// aggregate or a projection and that is one pass or two, and end to end on two million rows
216    /// `SELECT sum(a), sum(b), count(*) FROM t WHERE a > ?` measures the same either way at one
217    /// percent selectivity and fifty percent slower compacting at fifty percent selectivity. The
218    /// operators that will want this are the ones that hold chunks rather than pass them on, the
219    /// hash join build side and the sort, because a chunk that is kept alive as a selection keeps
220    /// the whole chunk it was selected from alive with it, and that is a hundred to one on memory
221    /// rather than a few percent on time.
222    ///
223    /// Takes the chunk by value like [`Self::select`] does, even though the payload is copied rather
224    /// than moved, because a caller that still wanted the original after compacting it would be
225    /// holding both copies and should say so.
226    ///
227    /// # Errors
228    ///
229    /// If the selection points past the end of the chunk, or if a column has a type there is no
230    /// vector for, which today means `ARRAY` and `UNION`.
231    pub fn compact(self, selection: &Selection) -> Result<Self> {
232        if let Some(bad) = selection.iter().find(|&index| index >= self.rows) {
233            return Err(Error::internal(format!(
234                "a selection keeps row {bad} of a chunk that has {} rows",
235                self.rows
236            )));
237        }
238        let rows = selection.len();
239        let indices = selection.indices();
240        let mut columns = Vec::with_capacity(self.columns.len());
241        for column in &self.columns {
242            columns.push(column.gather(indices)?);
243        }
244        Self::with_rows(columns, rows)
245    }
246
247    /// The columns at the given positions, in that order.
248    ///
249    /// A position may appear twice, which is what `SELECT x, x FROM t` is, and the second one costs
250    /// a copy. Every other position is moved.
251    ///
252    /// # Errors
253    ///
254    /// If a position is past the end of the chunk.
255    pub fn project(self, positions: &[usize]) -> Result<Self> {
256        let width = self.columns.len();
257        if let Some(&bad) = positions.iter().find(|&&position| position >= width) {
258            return Err(Error::internal(format!(
259                "column {bad} of a chunk that has {width} columns"
260            )));
261        }
262        let rows = self.rows;
263        let mut sources: Vec<Option<Vector>> = self.columns.into_iter().map(Some).collect();
264        let mut columns = Vec::with_capacity(positions.len());
265        for (at, &position) in positions.iter().enumerate() {
266            let last_use = !positions[at + 1..].contains(&position);
267            let taken = if last_use { sources[position].take() } else { sources[position].clone() };
268            match taken {
269                Some(column) => columns.push(column),
270                // Only reachable if the last-use bookkeeping above is wrong, since a position is
271                // taken on its last appearance and cloned on every earlier one.
272                None => {
273                    return Err(Error::internal(format!("column {position} was taken twice")));
274                }
275            }
276        }
277        Self::with_rows(columns, rows)
278    }
279
280    /// The same rows with every column in flat form.
281    ///
282    /// Costs a copy per column that was not already flat. It is here for the result set at the top
283    /// of a query, where the dictionary vectors a filter left behind would otherwise be handed to a
284    /// caller who has to understand them.
285    ///
286    /// # Errors
287    ///
288    /// If a column has a type there is no vector for, which today means `ARRAY` and `UNION`. A `LIST`
289    /// and a `MAP` flatten to themselves and a `STRUCT` to a struct of flattened fields, since none of
290    /// the three has a data slice for a caller to read and there is nothing flatter to become.
291    pub fn flatten(&self) -> Result<Self> {
292        let mut columns = Vec::with_capacity(self.columns.len());
293        for column in &self.columns {
294            // flatten: this is the chunk wide version of the vector call and it exists so that the
295            // one caller at the top of a query can say it once instead of per column. Whether the
296            // copy is deserved is decided where this is called from, which today is one line in
297            // `rudb::database`, and that line says why.
298            columns.push(column.flatten()?);
299        }
300        Self::with_rows(columns, self.rows)
301    }
302}
303
304#[cfg(test)]
305mod tests {
306    use rudb_common::LogicalType;
307
308    use super::*;
309    use crate::vector::{Data, Form};
310
311    fn integers(values: &[i32]) -> Vector {
312        Vector::flat(LogicalType::Integer, Data::Int32(values.to_vec().into()))
313            .expect("integers are an i32 layout")
314    }
315
316    #[test]
317    fn a_chunk_takes_its_length_from_its_columns() {
318        let chunk = Chunk::new(vec![integers(&[1, 2, 3]), integers(&[4, 5, 6])])
319            .expect("two columns of three");
320        assert_eq!(chunk.len(), 3);
321        assert_eq!(chunk.width(), 2);
322        assert_eq!(chunk.value_at(2, 1), Value::Integer(6));
323    }
324
325    #[test]
326    fn a_ragged_chunk_is_caught() {
327        let error = Chunk::new(vec![integers(&[1, 2, 3]), integers(&[4])])
328            .expect_err("a chunk is not ragged");
329        assert!(error.message().contains("column 1"), "{error}");
330    }
331
332    /// `SELECT count(*) FROM t` scans no columns and the row count still has to survive, which is
333    /// the reason the length is a field rather than the first column's length.
334    #[test]
335    fn a_chunk_with_no_columns_can_still_have_rows() {
336        let chunk = Chunk::with_rows(Vec::new(), 900).expect("no columns and nine hundred rows");
337        assert_eq!(chunk.len(), 900);
338        assert_eq!(chunk.width(), 0);
339        assert!(!chunk.is_empty(), "nine hundred rows is not empty");
340    }
341
342    #[test]
343    fn a_chunk_longer_than_a_vector_is_caught() {
344        let error = Chunk::with_rows(Vec::new(), VECTOR_SIZE + 1).expect_err("too long");
345        assert!(error.message().contains("longer than"), "{error}");
346    }
347
348    #[test]
349    fn an_empty_chunk_keeps_its_types() {
350        let chunk = Chunk::empty(&[LogicalType::Integer, LogicalType::Varchar]);
351        assert_eq!(chunk.len(), 0);
352        assert_eq!(chunk.types(), vec![LogicalType::Integer, LogicalType::Varchar]);
353    }
354
355    #[test]
356    fn selecting_keeps_the_rows_it_selected_and_no_others() {
357        let chunk = Chunk::new(vec![integers(&[10, 20, 30, 40]), integers(&[1, 2, 3, 4])])
358            .expect("four rows");
359        let kept = Selection::from_predicate(4, |index| index % 2 == 1);
360        let chunk = chunk.select(&kept).expect("rows one and three exist");
361        assert_eq!(chunk.len(), 2);
362        assert_eq!(chunk.row(0).collect::<Vec<_>>(), vec![Value::Integer(20), Value::Integer(2)]);
363        assert_eq!(chunk.row(1).collect::<Vec<_>>(), vec![Value::Integer(40), Value::Integer(4)]);
364    }
365
366    /// The reason `select` takes the chunk by value. If it copied the payload then a filter would
367    /// cost the same as a compaction and the selection would be a pure loss.
368    #[test]
369    fn selecting_leaves_the_values_where_they_were() {
370        let chunk = Chunk::new(vec![integers(&[10, 20, 30, 40])]).expect("four rows");
371        let kept = Selection::from_predicate(4, |index| index == 0);
372        let chunk = chunk.select(&kept).expect("row zero exists");
373        assert_eq!(chunk.column(0).expect("one column").form(), Form::Dictionary);
374    }
375
376    #[test]
377    fn a_selection_past_the_end_is_caught() {
378        let chunk = Chunk::new(vec![integers(&[1, 2])]).expect("two rows");
379        let mut kept = Selection::empty();
380        kept.push(7);
381        let error = chunk.select(&kept).expect_err("row seven does not exist");
382        assert!(error.message().contains("row 7"), "{error}");
383    }
384
385    /// The two halves of section 7.1's decision have to answer the same question the same way, or
386    /// the threshold between them is a place where a query changes its answer.
387    #[test]
388    fn compacting_keeps_the_same_rows_selecting_does_and_leaves_no_indirection() {
389        let chunk = Chunk::new(vec![integers(&[10, 20, 30, 40]), integers(&[1, 2, 3, 4])])
390            .expect("four rows");
391        let kept = Selection::from_predicate(4, |index| index % 2 == 1);
392        let selected = chunk.clone().select(&kept).expect("rows one and three exist");
393        let compacted = chunk.compact(&kept).expect("rows one and three exist");
394        assert_eq!(compacted.len(), selected.len());
395        for row in 0..compacted.len() {
396            assert_eq!(
397                compacted.row(row).collect::<Vec<_>>(),
398                selected.row(row).collect::<Vec<_>>()
399            );
400        }
401        assert_eq!(compacted.column(0).expect("one column").form(), Form::Flat);
402    }
403
404    #[test]
405    fn a_selection_past_the_end_is_caught_by_compacting_too() {
406        let chunk = Chunk::new(vec![integers(&[1, 2])]).expect("two rows");
407        let mut kept = Selection::empty();
408        kept.push(7);
409        let error = chunk.compact(&kept).expect_err("row seven does not exist");
410        assert!(error.message().contains("row 7"), "{error}");
411    }
412
413    #[test]
414    fn projecting_reorders_and_can_repeat_a_column() {
415        let chunk = Chunk::new(vec![integers(&[1, 2]), integers(&[3, 4])]).expect("two by two");
416        let chunk = chunk.project(&[1, 0, 1]).expect("both columns exist");
417        assert_eq!(chunk.width(), 3);
418        assert_eq!(
419            chunk.row(0).collect::<Vec<_>>(),
420            vec![Value::Integer(3), Value::Integer(1), Value::Integer(3)]
421        );
422    }
423
424    #[test]
425    fn projecting_a_column_that_is_not_there_is_caught() {
426        let chunk = Chunk::new(vec![integers(&[1, 2])]).expect("one column");
427        let error = chunk.project(&[0, 4]).expect_err("there is no column four");
428        assert!(error.message().contains("column 4"), "{error}");
429    }
430
431    #[test]
432    fn flattening_a_selected_chunk_gives_the_same_values() {
433        let chunk = Chunk::new(vec![integers(&[10, 20, 30])]).expect("three rows");
434        let kept = Selection::from_predicate(3, |index| index != 1);
435        let selected = chunk.select(&kept).expect("rows zero and two exist");
436        let flat = selected.flatten().expect("integers flatten");
437        assert_eq!(flat.column(0).expect("one column").form(), Form::Flat);
438        for row in 0..flat.len() {
439            assert_eq!(flat.value_at(row, 0), selected.value_at(row, 0), "row {row}");
440        }
441    }
442
443    #[test]
444    fn a_chunk_costs_what_its_columns_cost() {
445        let chunk = Chunk::new(vec![integers(&[1; 1000]), integers(&[2; 1000])])
446            .expect("two columns of a thousand");
447        let columns: usize = chunk.columns().iter().map(Vector::footprint).sum();
448        assert_eq!(chunk.footprint(), size_of::<Chunk>() + columns);
449        assert!(chunk.footprint() >= 8000, "two thousand i32: {}", chunk.footprint());
450    }
451}