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 with no flat
230    /// layout, which today means the nested types.
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 that cannot be stored flat yet, which today means the nested types.
289    pub fn flatten(&self) -> Result<Self> {
290        let mut columns = Vec::with_capacity(self.columns.len());
291        for column in &self.columns {
292            columns.push(column.flatten()?);
293        }
294        Self::with_rows(columns, self.rows)
295    }
296}
297
298#[cfg(test)]
299mod tests {
300    use rudb_common::LogicalType;
301
302    use super::*;
303    use crate::vector::{Data, Form};
304
305    fn integers(values: &[i32]) -> Vector {
306        Vector::flat(LogicalType::Integer, Data::Int32(values.to_vec().into()))
307            .expect("integers are an i32 layout")
308    }
309
310    #[test]
311    fn a_chunk_takes_its_length_from_its_columns() {
312        let chunk = Chunk::new(vec![integers(&[1, 2, 3]), integers(&[4, 5, 6])])
313            .expect("two columns of three");
314        assert_eq!(chunk.len(), 3);
315        assert_eq!(chunk.width(), 2);
316        assert_eq!(chunk.value_at(2, 1), Value::Integer(6));
317    }
318
319    #[test]
320    fn a_ragged_chunk_is_caught() {
321        let error = Chunk::new(vec![integers(&[1, 2, 3]), integers(&[4])])
322            .expect_err("a chunk is not ragged");
323        assert!(error.message().contains("column 1"), "{error}");
324    }
325
326    /// `SELECT count(*) FROM t` scans no columns and the row count still has to survive, which is
327    /// the reason the length is a field rather than the first column's length.
328    #[test]
329    fn a_chunk_with_no_columns_can_still_have_rows() {
330        let chunk = Chunk::with_rows(Vec::new(), 900).expect("no columns and nine hundred rows");
331        assert_eq!(chunk.len(), 900);
332        assert_eq!(chunk.width(), 0);
333        assert!(!chunk.is_empty(), "nine hundred rows is not empty");
334    }
335
336    #[test]
337    fn a_chunk_longer_than_a_vector_is_caught() {
338        let error = Chunk::with_rows(Vec::new(), VECTOR_SIZE + 1).expect_err("too long");
339        assert!(error.message().contains("longer than"), "{error}");
340    }
341
342    #[test]
343    fn an_empty_chunk_keeps_its_types() {
344        let chunk = Chunk::empty(&[LogicalType::Integer, LogicalType::Varchar]);
345        assert_eq!(chunk.len(), 0);
346        assert_eq!(chunk.types(), vec![LogicalType::Integer, LogicalType::Varchar]);
347    }
348
349    #[test]
350    fn selecting_keeps_the_rows_it_selected_and_no_others() {
351        let chunk = Chunk::new(vec![integers(&[10, 20, 30, 40]), integers(&[1, 2, 3, 4])])
352            .expect("four rows");
353        let kept = Selection::from_predicate(4, |index| index % 2 == 1);
354        let chunk = chunk.select(&kept).expect("rows one and three exist");
355        assert_eq!(chunk.len(), 2);
356        assert_eq!(chunk.row(0).collect::<Vec<_>>(), vec![Value::Integer(20), Value::Integer(2)]);
357        assert_eq!(chunk.row(1).collect::<Vec<_>>(), vec![Value::Integer(40), Value::Integer(4)]);
358    }
359
360    /// The reason `select` takes the chunk by value. If it copied the payload then a filter would
361    /// cost the same as a compaction and the selection would be a pure loss.
362    #[test]
363    fn selecting_leaves_the_values_where_they_were() {
364        let chunk = Chunk::new(vec![integers(&[10, 20, 30, 40])]).expect("four rows");
365        let kept = Selection::from_predicate(4, |index| index == 0);
366        let chunk = chunk.select(&kept).expect("row zero exists");
367        assert_eq!(chunk.column(0).expect("one column").form(), Form::Dictionary);
368    }
369
370    #[test]
371    fn a_selection_past_the_end_is_caught() {
372        let chunk = Chunk::new(vec![integers(&[1, 2])]).expect("two rows");
373        let mut kept = Selection::empty();
374        kept.push(7);
375        let error = chunk.select(&kept).expect_err("row seven does not exist");
376        assert!(error.message().contains("row 7"), "{error}");
377    }
378
379    /// The two halves of section 7.1's decision have to answer the same question the same way, or
380    /// the threshold between them is a place where a query changes its answer.
381    #[test]
382    fn compacting_keeps_the_same_rows_selecting_does_and_leaves_no_indirection() {
383        let chunk = Chunk::new(vec![integers(&[10, 20, 30, 40]), integers(&[1, 2, 3, 4])])
384            .expect("four rows");
385        let kept = Selection::from_predicate(4, |index| index % 2 == 1);
386        let selected = chunk.clone().select(&kept).expect("rows one and three exist");
387        let compacted = chunk.compact(&kept).expect("rows one and three exist");
388        assert_eq!(compacted.len(), selected.len());
389        for row in 0..compacted.len() {
390            assert_eq!(
391                compacted.row(row).collect::<Vec<_>>(),
392                selected.row(row).collect::<Vec<_>>()
393            );
394        }
395        assert_eq!(compacted.column(0).expect("one column").form(), Form::Flat);
396    }
397
398    #[test]
399    fn a_selection_past_the_end_is_caught_by_compacting_too() {
400        let chunk = Chunk::new(vec![integers(&[1, 2])]).expect("two rows");
401        let mut kept = Selection::empty();
402        kept.push(7);
403        let error = chunk.compact(&kept).expect_err("row seven does not exist");
404        assert!(error.message().contains("row 7"), "{error}");
405    }
406
407    #[test]
408    fn projecting_reorders_and_can_repeat_a_column() {
409        let chunk = Chunk::new(vec![integers(&[1, 2]), integers(&[3, 4])]).expect("two by two");
410        let chunk = chunk.project(&[1, 0, 1]).expect("both columns exist");
411        assert_eq!(chunk.width(), 3);
412        assert_eq!(
413            chunk.row(0).collect::<Vec<_>>(),
414            vec![Value::Integer(3), Value::Integer(1), Value::Integer(3)]
415        );
416    }
417
418    #[test]
419    fn projecting_a_column_that_is_not_there_is_caught() {
420        let chunk = Chunk::new(vec![integers(&[1, 2])]).expect("one column");
421        let error = chunk.project(&[0, 4]).expect_err("there is no column four");
422        assert!(error.message().contains("column 4"), "{error}");
423    }
424
425    #[test]
426    fn flattening_a_selected_chunk_gives_the_same_values() {
427        let chunk = Chunk::new(vec![integers(&[10, 20, 30])]).expect("three rows");
428        let kept = Selection::from_predicate(3, |index| index != 1);
429        let selected = chunk.select(&kept).expect("rows zero and two exist");
430        let flat = selected.flatten().expect("integers flatten");
431        assert_eq!(flat.column(0).expect("one column").form(), Form::Flat);
432        for row in 0..flat.len() {
433            assert_eq!(flat.value_at(row, 0), selected.value_at(row, 0), "row {row}");
434        }
435    }
436
437    #[test]
438    fn a_chunk_costs_what_its_columns_cost() {
439        let chunk = Chunk::new(vec![integers(&[1; 1000]), integers(&[2; 1000])])
440            .expect("two columns of a thousand");
441        let columns: usize = chunk.columns().iter().map(Vector::footprint).sum();
442        assert_eq!(chunk.footprint(), size_of::<Chunk>() + columns);
443        assert!(chunk.footprint() >= 8000, "two thousand i32: {}", chunk.footprint());
444    }
445}