index/inverted_index/create/
sort_create.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
// Copyright 2023 Greptime Team
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use std::collections::HashMap;
use std::num::NonZeroUsize;

use async_trait::async_trait;
use snafu::ensure;

use crate::bitmap::BitmapType;
use crate::inverted_index::create::sort::{SortOutput, Sorter};
use crate::inverted_index::create::InvertedIndexCreator;
use crate::inverted_index::error::{InconsistentRowCountSnafu, Result};
use crate::inverted_index::format::writer::InvertedIndexWriter;
use crate::BytesRef;

type IndexName = String;
type SegmentRowCount = NonZeroUsize;

/// Factory type to produce `Sorter` instances associated with an index name and segment row count
pub type SorterFactory = Box<dyn Fn(IndexName, SegmentRowCount) -> Box<dyn Sorter> + Send>;

/// `SortIndexCreator` orchestrates indexing by sorting input data for each named index
/// and writing to an inverted index writer
pub struct SortIndexCreator {
    /// Factory for producing `Sorter` instances
    sorter_factory: SorterFactory,

    /// Map of index names to sorters
    sorters: HashMap<IndexName, Box<dyn Sorter>>,

    /// Number of rows in each segment, used to produce sorters
    segment_row_count: NonZeroUsize,
}

#[async_trait]
impl InvertedIndexCreator for SortIndexCreator {
    /// Inserts `n` values or nulls into the sorter for the specified index.
    ///
    /// If the index does not exist, a new index is created even if `n` is 0.
    /// Caller may leverage this behavior to create indexes with no data.
    async fn push_with_name_n(
        &mut self,
        index_name: &str,
        value: Option<BytesRef<'_>>,
        n: usize,
    ) -> Result<()> {
        match self.sorters.get_mut(index_name) {
            Some(sorter) => sorter.push_n(value, n).await,
            None => {
                let index_name = index_name.to_string();
                let mut sorter = (self.sorter_factory)(index_name.clone(), self.segment_row_count);
                sorter.push_n(value, n).await?;
                self.sorters.insert(index_name, sorter);
                Ok(())
            }
        }
    }

    /// Finalizes the sorting for all indexes and writes them using the inverted index writer
    async fn finish(
        &mut self,
        writer: &mut dyn InvertedIndexWriter,
        bitmap_type: BitmapType,
    ) -> Result<()> {
        let mut output_row_count = None;
        for (index_name, mut sorter) in self.sorters.drain() {
            let SortOutput {
                segment_null_bitmap,
                sorted_stream,
                total_row_count,
            } = sorter.output().await?;

            let expected_row_count = *output_row_count.get_or_insert(total_row_count);
            ensure!(
                expected_row_count == total_row_count,
                InconsistentRowCountSnafu {
                    index_name,
                    total_row_count,
                    expected_row_count,
                }
            );

            writer
                .add_index(index_name, segment_null_bitmap, sorted_stream, bitmap_type)
                .await?;
        }

        let total_row_count = output_row_count.unwrap_or_default() as _;
        let segment_row_count = self.segment_row_count as _;
        writer.finish(total_row_count, segment_row_count).await
    }
}

impl SortIndexCreator {
    /// Creates a new `SortIndexCreator` with the given sorter factory and index writer
    pub fn new(sorter_factory: SorterFactory, segment_row_count: NonZeroUsize) -> Self {
        Self {
            sorter_factory,
            sorters: HashMap::new(),
            segment_row_count,
        }
    }
}

#[cfg(test)]
mod tests {
    use std::collections::BTreeMap;

    use common_base::BitVec;
    use futures::{stream, StreamExt};

    use super::*;
    use crate::bitmap::Bitmap;
    use crate::inverted_index::error::Error;
    use crate::inverted_index::format::writer::{MockInvertedIndexWriter, ValueStream};
    use crate::Bytes;

    #[tokio::test]
    async fn test_sort_index_creator_basic() {
        let mut creator =
            SortIndexCreator::new(NaiveSorter::factory(), NonZeroUsize::new(1).unwrap());

        let index_values = vec![
            ("a", vec![b"3", b"2", b"1"]),
            ("b", vec![b"6", b"5", b"4"]),
            ("c", vec![b"1", b"2", b"3"]),
        ];

        for (index_name, values) in index_values {
            for value in values {
                creator
                    .push_with_name(index_name, Some(value))
                    .await
                    .unwrap();
            }
        }

        let mut mock_writer = MockInvertedIndexWriter::new();
        mock_writer.expect_add_index().times(3).returning(
            |name, null_bitmap, stream, bitmap_type| {
                assert!(null_bitmap.is_empty());
                assert_eq!(bitmap_type, BitmapType::Roaring);
                match name.as_str() {
                    "a" => assert_eq!(stream_to_values(stream), vec![b"1", b"2", b"3"]),
                    "b" => assert_eq!(stream_to_values(stream), vec![b"4", b"5", b"6"]),
                    "c" => assert_eq!(stream_to_values(stream), vec![b"1", b"2", b"3"]),
                    _ => panic!("unexpected index name: {}", name),
                }
                Ok(())
            },
        );
        mock_writer
            .expect_finish()
            .times(1)
            .returning(|total_row_count, segment_row_count| {
                assert_eq!(total_row_count, 3);
                assert_eq!(segment_row_count.get(), 1);
                Ok(())
            });

        creator
            .finish(&mut mock_writer, BitmapType::Roaring)
            .await
            .unwrap();
    }

    #[tokio::test]
    async fn test_sort_index_creator_inconsistent_row_count() {
        let mut creator =
            SortIndexCreator::new(NaiveSorter::factory(), NonZeroUsize::new(1).unwrap());

        let index_values = vec![
            ("a", vec![b"3", b"2", b"1"]),
            ("b", vec![b"6", b"5", b"4"]),
            ("c", vec![b"1", b"2"]),
        ];

        for (index_name, values) in index_values {
            for value in values {
                creator
                    .push_with_name(index_name, Some(value))
                    .await
                    .unwrap();
            }
        }

        let mut mock_writer = MockInvertedIndexWriter::new();
        mock_writer
            .expect_add_index()
            .returning(|name, null_bitmap, stream, bitmap_type| {
                assert!(null_bitmap.is_empty());
                assert_eq!(bitmap_type, BitmapType::Roaring);
                match name.as_str() {
                    "a" => assert_eq!(stream_to_values(stream), vec![b"1", b"2", b"3"]),
                    "b" => assert_eq!(stream_to_values(stream), vec![b"4", b"5", b"6"]),
                    "c" => assert_eq!(stream_to_values(stream), vec![b"1", b"2"]),
                    _ => panic!("unexpected index name: {}", name),
                }
                Ok(())
            });
        mock_writer.expect_finish().never();

        let res = creator.finish(&mut mock_writer, BitmapType::Roaring).await;
        assert!(matches!(res, Err(Error::InconsistentRowCount { .. })));
    }

    #[tokio::test]
    async fn test_sort_index_creator_create_indexes_without_data() {
        let mut creator =
            SortIndexCreator::new(NaiveSorter::factory(), NonZeroUsize::new(1).unwrap());

        creator.push_with_name_n("a", None, 0).await.unwrap();
        creator.push_with_name_n("b", None, 0).await.unwrap();
        creator.push_with_name_n("c", None, 0).await.unwrap();

        let mut mock_writer = MockInvertedIndexWriter::new();
        mock_writer
            .expect_add_index()
            .returning(|name, null_bitmap, stream, bitmap_type| {
                assert!(null_bitmap.is_empty());
                assert_eq!(bitmap_type, BitmapType::Roaring);
                assert!(matches!(name.as_str(), "a" | "b" | "c"));
                assert!(stream_to_values(stream).is_empty());
                Ok(())
            });
        mock_writer
            .expect_finish()
            .times(1)
            .returning(|total_row_count, segment_row_count| {
                assert_eq!(total_row_count, 0);
                assert_eq!(segment_row_count.get(), 1);
                Ok(())
            });

        creator
            .finish(&mut mock_writer, BitmapType::Roaring)
            .await
            .unwrap();
    }

    fn set_bit(bit_vec: &mut BitVec, index: usize) {
        if index >= bit_vec.len() {
            bit_vec.resize(index + 1, false);
        }
        bit_vec.set(index, true);
    }

    struct NaiveSorter {
        total_row_count: usize,
        segment_row_count: NonZeroUsize,
        values: BTreeMap<Option<Bytes>, BitVec>,
    }

    impl NaiveSorter {
        fn factory() -> SorterFactory {
            Box::new(|_index_name, segment_row_count| {
                Box::new(NaiveSorter {
                    total_row_count: 0,
                    segment_row_count,
                    values: BTreeMap::new(),
                })
            })
        }
    }

    #[async_trait]
    impl Sorter for NaiveSorter {
        async fn push(&mut self, value: Option<BytesRef<'_>>) -> Result<()> {
            let segment_index = self.total_row_count / self.segment_row_count;
            self.total_row_count += 1;

            let bitmap = self.values.entry(value.map(Into::into)).or_default();
            set_bit(bitmap, segment_index);

            Ok(())
        }

        async fn push_n(&mut self, value: Option<BytesRef<'_>>, n: usize) -> Result<()> {
            for _ in 0..n {
                self.push(value).await?;
            }
            Ok(())
        }

        async fn output(&mut self) -> Result<SortOutput> {
            let segment_null_bitmap = self.values.remove(&None).unwrap_or_default();
            let segment_null_bitmap = Bitmap::BitVec(segment_null_bitmap);

            Ok(SortOutput {
                segment_null_bitmap,
                sorted_stream: Box::new(stream::iter(
                    std::mem::take(&mut self.values)
                        .into_iter()
                        .map(|(v, b)| Ok((v.unwrap(), Bitmap::BitVec(b)))),
                )),
                total_row_count: self.total_row_count,
            })
        }
    }

    fn stream_to_values(stream: ValueStream) -> Vec<Bytes> {
        futures::executor::block_on(async {
            stream.map(|r| r.unwrap().0).collect::<Vec<Bytes>>().await
        })
    }
}