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
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

//! Parquet serialization and deserialization for persist data.

use std::fmt::Debug;
use std::io::Write;
use std::sync::Arc;

use arrow::array::{Array, RecordBatch};
use arrow::datatypes::{Fields, Schema as ArrowSchema};
use parquet::arrow::arrow_reader::{ParquetRecordBatchReader, ParquetRecordBatchReaderBuilder};
use parquet::arrow::ArrowWriter;
use parquet::basic::Encoding;
use parquet::file::properties::{EnabledStatistics, WriterProperties, WriterVersion};
use parquet::file::reader::ChunkReader;
use proptest::prelude::*;
use proptest_derive::Arbitrary;

/// Configuration for encoding columnar data.
#[derive(Debug, Copy, Clone, Arbitrary)]
pub struct EncodingConfig {
    /// Enable dictionary encoding for Parquet data.
    pub use_dictionary: bool,
    /// Compression format for Parquet data.
    pub compression: CompressionFormat,
}

impl Default for EncodingConfig {
    fn default() -> Self {
        EncodingConfig {
            use_dictionary: false,
            compression: CompressionFormat::default(),
        }
    }
}

/// Compression format to apply to columnar data.
#[derive(Default, Debug, Copy, Clone, PartialEq, Eq, Arbitrary)]
pub enum CompressionFormat {
    /// No compression.
    #[default]
    None,
    /// snappy
    Snappy,
    /// lz4
    Lz4,
    /// brotli
    Brotli(CompressionLevel<1, 11, 1>),
    /// zstd
    Zstd(CompressionLevel<1, 22, 1>),
    /// gzip
    Gzip(CompressionLevel<1, 9, 6>),
}

impl CompressionFormat {
    /// Parse a [`CompressionFormat`] from a string, falling back to defaults if the string is not valid.
    pub fn from_str(s: &str) -> Self {
        fn parse_level<const MIN: i32, const MAX: i32, const D: i32>(
            name: &'static str,
            val: &str,
        ) -> CompressionLevel<MIN, MAX, D> {
            match CompressionLevel::from_str(val) {
                Ok(level) => level,
                Err(err) => {
                    tracing::error!("invalid {name} compression level, err: {err}");
                    CompressionLevel::default()
                }
            }
        }

        match s.to_lowercase().as_str() {
            "" => CompressionFormat::None,
            "none" => CompressionFormat::None,
            "snappy" => CompressionFormat::Snappy,
            "lz4" => CompressionFormat::Lz4,
            other => match other.split_once('-') {
                Some(("brotli", level)) => CompressionFormat::Brotli(parse_level("brotli", level)),
                Some(("zstd", level)) => CompressionFormat::Zstd(parse_level("zstd", level)),
                Some(("gzip", level)) => CompressionFormat::Gzip(parse_level("gzip", level)),
                _ => {
                    tracing::error!("unrecognized compression format {s}, returning None");
                    CompressionFormat::None
                }
            },
        }
    }
}

impl From<CompressionFormat> for parquet::basic::Compression {
    fn from(value: CompressionFormat) -> Self {
        match value {
            CompressionFormat::None => parquet::basic::Compression::UNCOMPRESSED,
            CompressionFormat::Lz4 => parquet::basic::Compression::LZ4_RAW,
            CompressionFormat::Snappy => parquet::basic::Compression::SNAPPY,
            CompressionFormat::Brotli(level) => {
                let level: u32 = level.0.try_into().expect("known not negative");
                let level = parquet::basic::BrotliLevel::try_new(level).expect("known valid");
                parquet::basic::Compression::BROTLI(level)
            }
            CompressionFormat::Zstd(level) => {
                let level = parquet::basic::ZstdLevel::try_new(level.0).expect("known valid");
                parquet::basic::Compression::ZSTD(level)
            }
            CompressionFormat::Gzip(level) => {
                let level: u32 = level.0.try_into().expect("known not negative");
                let level = parquet::basic::GzipLevel::try_new(level).expect("known valid");
                parquet::basic::Compression::GZIP(level)
            }
        }
    }
}

/// Level of compression for columnar data.
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub struct CompressionLevel<const MIN: i32, const MAX: i32, const DEFAULT: i32>(i32);

impl<const MIN: i32, const MAX: i32, const DEFAULT: i32> Default
    for CompressionLevel<MIN, MAX, DEFAULT>
{
    fn default() -> Self {
        CompressionLevel(DEFAULT)
    }
}

impl<const MIN: i32, const MAX: i32, const DEFAULT: i32> CompressionLevel<MIN, MAX, DEFAULT> {
    /// Try creating a [`CompressionLevel`] from the provided value, returning an error if it is
    /// outside the `MIN` and `MAX` bounds.
    pub const fn try_new(val: i32) -> Result<Self, i32> {
        if val < MIN {
            Err(val)
        } else if val > MAX {
            Err(val)
        } else {
            Ok(CompressionLevel(val))
        }
    }

    /// Parse a [`CompressionLevel`] form the provided string, returning an error if the string is
    /// not valid.
    pub fn from_str(s: &str) -> Result<Self, String> {
        let val = s.parse::<i32>().map_err(|e| e.to_string())?;
        Self::try_new(val).map_err(|e| e.to_string())
    }
}

impl<const MIN: i32, const MAX: i32, const DEFAULT: i32> Arbitrary
    for CompressionLevel<MIN, MAX, DEFAULT>
{
    type Parameters = ();
    type Strategy = BoxedStrategy<CompressionLevel<MIN, MAX, DEFAULT>>;

    fn arbitrary_with(_args: Self::Parameters) -> Self::Strategy {
        ({ MIN }..={ MAX }).prop_map(CompressionLevel).boxed()
    }
}

/// Encodes a set of [`Array`]s into Parquet.
pub fn encode_arrays<W: Write + Send>(
    w: &mut W,
    fields: Fields,
    arrays: Vec<Arc<dyn Array>>,
    config: &EncodingConfig,
) -> Result<(), anyhow::Error> {
    let schema = Arc::new(ArrowSchema::new(fields));
    let props = WriterProperties::builder()
        .set_dictionary_enabled(config.use_dictionary)
        .set_encoding(Encoding::PLAIN)
        .set_statistics_enabled(EnabledStatistics::None)
        .set_compression(config.compression.into())
        .set_writer_version(WriterVersion::PARQUET_2_0)
        .set_data_page_size_limit(1024 * 1024)
        .set_max_row_group_size(usize::MAX)
        .build();
    let mut writer = ArrowWriter::try_new(w, Arc::clone(&schema), Some(props))?;

    let record_batch = RecordBatch::try_new(schema, arrays)?;

    writer.write(&record_batch)?;
    writer.flush()?;
    writer.close()?;

    Ok(())
}

/// Decodes a [`RecordBatch`] from the provided reader.
pub fn decode_arrays<R: ChunkReader + 'static>(
    r: R,
) -> Result<ParquetRecordBatchReader, anyhow::Error> {
    let builder = ParquetRecordBatchReaderBuilder::try_new(r)?;

    // To match arrow2, we default the batch size to the number of rows in the RowGroup.
    let row_groups = builder.metadata().row_groups();
    if row_groups.len() > 1 {
        anyhow::bail!("found more than 1 RowGroup")
    }
    let num_rows = row_groups
        .get(0)
        .map(|g| g.num_rows())
        .unwrap_or(1024)
        .try_into()
        .unwrap();
    let builder = builder.with_batch_size(num_rows);

    let reader = builder.build()?;
    Ok(reader)
}

#[cfg(test)]
mod tests {
    use super::*;

    #[mz_ore::test]
    fn smoketest_compression_level_parsing() {
        let cases = &[
            ("", CompressionFormat::None),
            ("none", CompressionFormat::None),
            ("snappy", CompressionFormat::Snappy),
            ("lz4", CompressionFormat::Lz4),
            ("lZ4", CompressionFormat::Lz4),
            ("gzip-1", CompressionFormat::Gzip(CompressionLevel(1))),
            ("GZIp-6", CompressionFormat::Gzip(CompressionLevel(6))),
            ("gzip-9", CompressionFormat::Gzip(CompressionLevel(9))),
            ("brotli-1", CompressionFormat::Brotli(CompressionLevel(1))),
            ("BROtli-8", CompressionFormat::Brotli(CompressionLevel(8))),
            ("brotli-11", CompressionFormat::Brotli(CompressionLevel(11))),
            ("zstd-1", CompressionFormat::Zstd(CompressionLevel(1))),
            ("zstD-10", CompressionFormat::Zstd(CompressionLevel(10))),
            ("zstd-22", CompressionFormat::Zstd(CompressionLevel(22))),
            ("foo", CompressionFormat::None),
            // Invalid values that fallback to the default values.
            ("gzip-0", CompressionFormat::Gzip(Default::default())),
            ("gzip-10", CompressionFormat::Gzip(Default::default())),
            ("brotli-0", CompressionFormat::Brotli(Default::default())),
            ("brotli-12", CompressionFormat::Brotli(Default::default())),
            ("zstd-0", CompressionFormat::Zstd(Default::default())),
            ("zstd-23", CompressionFormat::Zstd(Default::default())),
        ];
        for (s, val) in cases {
            assert_eq!(CompressionFormat::from_str(s), *val);
        }
    }
}