iceberg/spec/manifest/data_file.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 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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::io::{Read, Write};
use std::str::FromStr;
use apache_avro::{from_value, to_value, Reader as AvroReader, Writer as AvroWriter};
use serde_derive::{Deserialize, Serialize};
use serde_with::{DeserializeFromStr, SerializeDisplay};
use super::_serde::DataFileSerde;
use super::{data_file_schema_v1, data_file_schema_v2, Datum, FormatVersion, Schema};
use crate::error::Result;
use crate::spec::{Struct, StructType};
use crate::{Error, ErrorKind};
/// Data file carries data file path, partition tuple, metrics, …
#[derive(Debug, PartialEq, Clone, Eq, Builder)]
pub struct DataFile {
/// field id: 134
///
/// Type of content stored by the data file: data, equality deletes,
/// or position deletes (all v1 files are data files)
pub(crate) content: DataContentType,
/// field id: 100
///
/// Full URI for the file with FS scheme
pub(crate) file_path: String,
/// field id: 101
///
/// String file format name, avro, orc or parquet
pub(crate) file_format: DataFileFormat,
/// field id: 102
///
/// Partition data tuple, schema based on the partition spec output using
/// partition field ids for the struct field ids
pub(crate) partition: Struct,
/// field id: 103
///
/// Number of records in this file
pub(crate) record_count: u64,
/// field id: 104
///
/// Total file size in bytes
pub(crate) file_size_in_bytes: u64,
/// field id: 108
/// key field id: 117
/// value field id: 118
///
/// Map from column id to the total size on disk of all regions that
/// store the column. Does not include bytes necessary to read other
/// columns, like footers. Leave null for row-oriented formats (Avro)
#[builder(default)]
pub(crate) column_sizes: HashMap<i32, u64>,
/// field id: 109
/// key field id: 119
/// value field id: 120
///
/// Map from column id to number of values in the column (including null
/// and NaN values)
#[builder(default)]
pub(crate) value_counts: HashMap<i32, u64>,
/// field id: 110
/// key field id: 121
/// value field id: 122
///
/// Map from column id to number of null values in the column
#[builder(default)]
pub(crate) null_value_counts: HashMap<i32, u64>,
/// field id: 137
/// key field id: 138
/// value field id: 139
///
/// Map from column id to number of NaN values in the column
#[builder(default)]
pub(crate) nan_value_counts: HashMap<i32, u64>,
/// field id: 125
/// key field id: 126
/// value field id: 127
///
/// Map from column id to lower bound in the column serialized as binary.
/// Each value must be less than or equal to all non-null, non-NaN values
/// in the column for the file.
///
/// Reference:
///
/// - [Binary single-value serialization](https://iceberg.apache.org/spec/#binary-single-value-serialization)
#[builder(default)]
pub(crate) lower_bounds: HashMap<i32, Datum>,
/// field id: 128
/// key field id: 129
/// value field id: 130
///
/// Map from column id to upper bound in the column serialized as binary.
/// Each value must be greater than or equal to all non-null, non-Nan
/// values in the column for the file.
///
/// Reference:
///
/// - [Binary single-value serialization](https://iceberg.apache.org/spec/#binary-single-value-serialization)
#[builder(default)]
pub(crate) upper_bounds: HashMap<i32, Datum>,
/// field id: 131
///
/// Implementation-specific key metadata for encryption
#[builder(default)]
pub(crate) key_metadata: Option<Vec<u8>>,
/// field id: 132
/// element field id: 133
///
/// Split offsets for the data file. For example, all row group offsets
/// in a Parquet file. Must be sorted ascending
#[builder(default)]
pub(crate) split_offsets: Vec<i64>,
/// field id: 135
/// element field id: 136
///
/// Field ids used to determine row equality in equality delete files.
/// Required when content is EqualityDeletes and should be null
/// otherwise. Fields with ids listed in this column must be present
/// in the delete file
#[builder(default)]
pub(crate) equality_ids: Vec<i32>,
/// field id: 140
///
/// ID representing sort order for this file.
///
/// If sort order ID is missing or unknown, then the order is assumed to
/// be unsorted. Only data files and equality delete files should be
/// written with a non-null order id. Position deletes are required to be
/// sorted by file and position, not a table order, and should set sort
/// order id to null. Readers must ignore sort order id for position
/// delete files.
#[builder(default, setter(strip_option))]
pub(crate) sort_order_id: Option<i32>,
/// This field is not included in spec. It is just store in memory representation used
/// in process.
pub(crate) partition_spec_id: i32,
}
impl DataFile {
/// Get the content type of the data file (data, equality deletes, or position deletes)
pub fn content_type(&self) -> DataContentType {
self.content
}
/// Get the file path as full URI with FS scheme
pub fn file_path(&self) -> &str {
&self.file_path
}
/// Get the file format of the file (avro, orc or parquet).
pub fn file_format(&self) -> DataFileFormat {
self.file_format
}
/// Get the partition values of the file.
pub fn partition(&self) -> &Struct {
&self.partition
}
/// Get the record count in the data file.
pub fn record_count(&self) -> u64 {
self.record_count
}
/// Get the file size in bytes.
pub fn file_size_in_bytes(&self) -> u64 {
self.file_size_in_bytes
}
/// Get the column sizes.
/// Map from column id to the total size on disk of all regions that
/// store the column. Does not include bytes necessary to read other
/// columns, like footers. Null for row-oriented formats (Avro)
pub fn column_sizes(&self) -> &HashMap<i32, u64> {
&self.column_sizes
}
/// Get the columns value counts for the data file.
/// Map from column id to number of values in the column (including null
/// and NaN values)
pub fn value_counts(&self) -> &HashMap<i32, u64> {
&self.value_counts
}
/// Get the null value counts of the data file.
/// Map from column id to number of null values in the column
pub fn null_value_counts(&self) -> &HashMap<i32, u64> {
&self.null_value_counts
}
/// Get the nan value counts of the data file.
/// Map from column id to number of NaN values in the column
pub fn nan_value_counts(&self) -> &HashMap<i32, u64> {
&self.nan_value_counts
}
/// Get the lower bounds of the data file values per column.
/// Map from column id to lower bound in the column serialized as binary.
pub fn lower_bounds(&self) -> &HashMap<i32, Datum> {
&self.lower_bounds
}
/// Get the upper bounds of the data file values per column.
/// Map from column id to upper bound in the column serialized as binary.
pub fn upper_bounds(&self) -> &HashMap<i32, Datum> {
&self.upper_bounds
}
/// Get the Implementation-specific key metadata for the data file.
pub fn key_metadata(&self) -> Option<&[u8]> {
self.key_metadata.as_deref()
}
/// Get the split offsets of the data file.
/// For example, all row group offsets in a Parquet file.
pub fn split_offsets(&self) -> &[i64] {
&self.split_offsets
}
/// Get the equality ids of the data file.
/// Field ids used to determine row equality in equality delete files.
/// null when content is not EqualityDeletes.
pub fn equality_ids(&self) -> &[i32] {
&self.equality_ids
}
/// Get the sort order id of the data file.
/// Only data files and equality delete files should be
/// written with a non-null order id. Position deletes are required to be
/// sorted by file and position, not a table order, and should set sort
/// order id to null. Readers must ignore sort order id for position
/// delete files.
pub fn sort_order_id(&self) -> Option<i32> {
self.sort_order_id
}
}
/// Convert data files to avro bytes and write to writer.
/// Return the bytes written.
pub fn write_data_files_to_avro<W: Write>(
writer: &mut W,
data_files: impl IntoIterator<Item = DataFile>,
partition_type: &StructType,
version: FormatVersion,
) -> Result<usize> {
let avro_schema = match version {
FormatVersion::V1 => data_file_schema_v1(partition_type).unwrap(),
FormatVersion::V2 => data_file_schema_v2(partition_type).unwrap(),
};
let mut writer = AvroWriter::new(&avro_schema, writer);
for data_file in data_files {
let value = to_value(DataFileSerde::try_from(data_file, partition_type, true)?)?
.resolve(&avro_schema)?;
writer.append(value)?;
}
Ok(writer.flush()?)
}
/// Parse data files from avro bytes.
pub fn read_data_files_from_avro<R: Read>(
reader: &mut R,
schema: &Schema,
partition_spec_id: i32,
partition_type: &StructType,
version: FormatVersion,
) -> Result<Vec<DataFile>> {
let avro_schema = match version {
FormatVersion::V1 => data_file_schema_v1(partition_type).unwrap(),
FormatVersion::V2 => data_file_schema_v2(partition_type).unwrap(),
};
let reader = AvroReader::with_schema(&avro_schema, reader)?;
reader
.into_iter()
.map(|value| {
from_value::<DataFileSerde>(&value?)?.try_into(
partition_spec_id,
partition_type,
schema,
)
})
.collect::<Result<Vec<_>>>()
}
/// Type of content stored by the data file: data, equality deletes, or
/// position deletes (all v1 files are data files)
#[derive(Debug, PartialEq, Eq, Clone, Copy, Serialize, Deserialize)]
pub enum DataContentType {
/// value: 0
Data = 0,
/// value: 1
PositionDeletes = 1,
/// value: 2
EqualityDeletes = 2,
}
impl TryFrom<i32> for DataContentType {
type Error = Error;
fn try_from(v: i32) -> Result<DataContentType> {
match v {
0 => Ok(DataContentType::Data),
1 => Ok(DataContentType::PositionDeletes),
2 => Ok(DataContentType::EqualityDeletes),
_ => Err(Error::new(
ErrorKind::DataInvalid,
format!("data content type {} is invalid", v),
)),
}
}
}
/// Format of this data.
#[derive(Debug, PartialEq, Eq, Clone, Copy, SerializeDisplay, DeserializeFromStr)]
pub enum DataFileFormat {
/// Avro file format: <https://avro.apache.org/>
Avro,
/// Orc file format: <https://orc.apache.org/>
Orc,
/// Parquet file format: <https://parquet.apache.org/>
Parquet,
}
impl FromStr for DataFileFormat {
type Err = Error;
fn from_str(s: &str) -> Result<Self> {
match s.to_lowercase().as_str() {
"avro" => Ok(Self::Avro),
"orc" => Ok(Self::Orc),
"parquet" => Ok(Self::Parquet),
_ => Err(Error::new(
ErrorKind::DataInvalid,
format!("Unsupported data file format: {}", s),
)),
}
}
}
impl std::fmt::Display for DataFileFormat {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
DataFileFormat::Avro => write!(f, "avro"),
DataFileFormat::Orc => write!(f, "orc"),
DataFileFormat::Parquet => write!(f, "parquet"),
}
}
}