forked from delta-io/delta-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.rs
1532 lines (1399 loc) · 56.5 KB
/
mod.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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//! Actions included in Delta table transaction logs
#![allow(non_camel_case_types)]
use std::borrow::Borrow;
use std::collections::HashMap;
use std::hash::{Hash, Hasher};
use std::mem::take;
use std::str::FromStr;
use arrow_schema::ArrowError;
use futures::StreamExt;
use lazy_static::lazy_static;
use object_store::{path::Path, Error as ObjectStoreError, ObjectStore};
use regex::Regex;
use serde::{Deserialize, Serialize};
use serde_json::Value;
use tracing::{debug, error};
use crate::errors::{DeltaResult, DeltaTableError};
use crate::kernel::{Add, CommitInfo, Metadata, Protocol, Remove, StructField, TableFeatures};
use crate::logstore::LogStore;
use crate::table::CheckPoint;
pub mod checkpoints;
mod parquet_read;
mod time_utils;
/// Error returned when an invalid Delta log action is encountered.
#[allow(missing_docs)]
#[derive(thiserror::Error, Debug)]
pub enum ProtocolError {
#[error("Table state does not contain metadata")]
NoMetaData,
#[error("Checkpoint file not found")]
CheckpointNotFound,
#[error("End of transaction log")]
EndOfLog,
/// The action contains an invalid field.
#[error("Invalid action field: {0}")]
InvalidField(String),
/// A parquet log checkpoint file contains an invalid action.
#[error("Invalid action in parquet row: {0}")]
InvalidRow(String),
/// A transaction log contains invalid deletion vector storage type
#[error("Invalid deletion vector storage type: {0}")]
InvalidDeletionVectorStorageType(String),
/// A generic action error. The wrapped error string describes the details.
#[error("Generic action error: {0}")]
Generic(String),
/// Error returned when parsing checkpoint parquet using the parquet crate.
#[error("Failed to parse parquet checkpoint: {source}")]
ParquetParseError {
/// Parquet error details returned when parsing the checkpoint parquet
#[from]
source: parquet::errors::ParquetError,
},
/// Faild to serialize operation
#[error("Failed to serialize operation: {source}")]
SerializeOperation {
#[from]
/// The source error
source: serde_json::Error,
},
/// Error returned when converting the schema to Arrow format failed.
#[error("Failed to convert into Arrow schema: {}", .source)]
Arrow {
/// Arrow error details returned when converting the schema in Arrow format failed
#[from]
source: ArrowError,
},
/// Passthrough error returned when calling ObjectStore.
#[error("ObjectStoreError: {source}")]
ObjectStore {
/// The source ObjectStoreError.
#[from]
source: ObjectStoreError,
},
#[error("Io: {source}")]
IO {
#[from]
source: std::io::Error,
},
#[error("Kernel: {source}")]
Kernel {
#[from]
source: crate::kernel::Error,
},
}
/// Struct used to represent minValues and maxValues in add action statistics.
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
#[serde(untagged)]
pub enum ColumnValueStat {
/// Composite HashMap representation of statistics.
Column(HashMap<String, ColumnValueStat>),
/// Json representation of statistics.
Value(Value),
}
impl ColumnValueStat {
/// Returns the HashMap representation of the ColumnValueStat.
pub fn as_column(&self) -> Option<&HashMap<String, ColumnValueStat>> {
match self {
ColumnValueStat::Column(m) => Some(m),
_ => None,
}
}
/// Returns the serde_json representation of the ColumnValueStat.
pub fn as_value(&self) -> Option<&Value> {
match self {
ColumnValueStat::Value(v) => Some(v),
_ => None,
}
}
}
/// Struct used to represent nullCount in add action statistics.
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
#[serde(untagged)]
pub enum ColumnCountStat {
/// Composite HashMap representation of statistics.
Column(HashMap<String, ColumnCountStat>),
/// Json representation of statistics.
Value(i64),
}
impl ColumnCountStat {
/// Returns the HashMap representation of the ColumnCountStat.
pub fn as_column(&self) -> Option<&HashMap<String, ColumnCountStat>> {
match self {
ColumnCountStat::Column(m) => Some(m),
_ => None,
}
}
/// Returns the serde_json representation of the ColumnCountStat.
pub fn as_value(&self) -> Option<i64> {
match self {
ColumnCountStat::Value(v) => Some(*v),
_ => None,
}
}
}
/// Statistics associated with Add actions contained in the Delta log.
#[derive(Serialize, Deserialize, Debug, Default, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct Stats {
/// Number of records in the file associated with the log action.
pub num_records: i64,
// start of per column stats
/// Contains a value smaller than all values present in the file for all columns.
pub min_values: HashMap<String, ColumnValueStat>,
/// Contains a value larger than all values present in the file for all columns.
pub max_values: HashMap<String, ColumnValueStat>,
/// The number of null values for all columns.
pub null_count: HashMap<String, ColumnCountStat>,
}
/// Statistics associated with Add actions contained in the Delta log.
/// min_values, max_values and null_count are optional to allow them to be missing
#[derive(Serialize, Deserialize, Debug, Default, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
struct PartialStats {
/// Number of records in the file associated with the log action.
pub num_records: i64,
// start of per column stats
/// Contains a value smaller than all values present in the file for all columns.
pub min_values: Option<HashMap<String, ColumnValueStat>>,
/// Contains a value larger than all values present in the file for all columns.
pub max_values: Option<HashMap<String, ColumnValueStat>>,
/// The number of null values for all columns.
pub null_count: Option<HashMap<String, ColumnCountStat>>,
}
impl PartialStats {
/// Fills in missing HashMaps
pub fn as_stats(&mut self) -> Stats {
let min_values = take(&mut self.min_values);
let max_values = take(&mut self.max_values);
let null_count = take(&mut self.null_count);
Stats {
num_records: self.num_records,
min_values: min_values.unwrap_or_default(),
max_values: max_values.unwrap_or_default(),
null_count: null_count.unwrap_or_default(),
}
}
}
/// File stats parsed from raw parquet format.
#[derive(Debug, Default)]
pub struct StatsParsed {
/// Number of records in the file associated with the log action.
pub num_records: i64,
// start of per column stats
/// Contains a value smaller than all values present in the file for all columns.
pub min_values: HashMap<String, parquet::record::Field>,
/// Contains a value larger than all values present in the file for all columns.
/// Contains a value larger than all values present in the file for all columns.
pub max_values: HashMap<String, parquet::record::Field>,
/// The number of null values for all columns.
pub null_count: HashMap<String, i64>,
}
impl Hash for Add {
fn hash<H: Hasher>(&self, state: &mut H) {
self.path.hash(state);
}
}
impl PartialEq for Add {
fn eq(&self, other: &Self) -> bool {
self.path == other.path
&& self.size == other.size
&& self.partition_values == other.partition_values
&& self.modification_time == other.modification_time
&& self.data_change == other.data_change
&& self.stats == other.stats
&& self.tags == other.tags
&& self.deletion_vector == other.deletion_vector
}
}
impl Eq for Add {}
impl Add {
/// Get whatever stats are available. Uses (parquet struct) parsed_stats if present falling back to json stats.
pub(crate) fn get_stats(&self) -> Result<Option<Stats>, serde_json::error::Error> {
match self.get_stats_parsed() {
Ok(Some(stats)) => Ok(Some(stats)),
Ok(None) => self.get_json_stats(),
Err(e) => {
error!(
"Error when reading parquet stats {:?} {e}. Attempting to read json stats",
self.stats_parsed
);
self.get_json_stats()
}
}
}
/// Returns the serde_json representation of stats contained in the action if present.
/// Since stats are defined as optional in the protocol, this may be None.
pub fn get_json_stats(&self) -> Result<Option<Stats>, serde_json::error::Error> {
self.stats
.as_ref()
.map(|stats| serde_json::from_str(stats).map(|mut ps: PartialStats| ps.as_stats()))
.transpose()
}
}
impl Hash for Remove {
fn hash<H: Hasher>(&self, state: &mut H) {
self.path.hash(state);
}
}
/// Borrow `Remove` as str so we can look at tombstones hashset in `DeltaTableState` by using
/// a path from action `Add`.
impl Borrow<str> for Remove {
fn borrow(&self) -> &str {
self.path.as_ref()
}
}
impl PartialEq for Remove {
fn eq(&self, other: &Self) -> bool {
self.path == other.path
&& self.deletion_timestamp == other.deletion_timestamp
&& self.data_change == other.data_change
&& self.extended_file_metadata == other.extended_file_metadata
&& self.partition_values == other.partition_values
&& self.size == other.size
&& self.tags == other.tags
&& self.deletion_vector == other.deletion_vector
}
}
#[allow(clippy::large_enum_variant)]
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
/// Used to record the operations performed to the Delta Log
pub struct MergePredicate {
/// The type of merge operation performed
pub action_type: String,
/// The predicate used for the merge operation
#[serde(skip_serializing_if = "Option::is_none")]
pub predicate: Option<String>,
}
/// Operation performed when creating a new log entry with one or more actions.
/// This is a key element of the `CommitInfo` action.
#[allow(clippy::large_enum_variant)]
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub enum DeltaOperation {
/// Represents a Delta `Add Column` operation.
/// Used to add new columns or field in a struct
AddColumn {
/// Fields added to existing schema
fields: Vec<StructField>,
},
/// Represents a Delta `Create` operation.
/// Would usually only create the table, if also data is written,
/// a `Write` operations is more appropriate
Create {
/// The save mode used during the create.
mode: SaveMode,
/// The storage location of the new table
location: String,
/// The min reader and writer protocol versions of the table
protocol: Protocol,
/// Metadata associated with the new table
metadata: Metadata,
},
/// Represents a Delta `Write` operation.
/// Write operations will typically only include `Add` actions.
#[serde(rename_all = "camelCase")]
Write {
/// The save mode used during the write.
mode: SaveMode,
/// The columns the write is partitioned by.
partition_by: Option<Vec<String>>,
/// The predicate used during the write.
predicate: Option<String>,
},
/// Delete data matching predicate from delta table
Delete {
/// The condition the to be deleted data must match
predicate: Option<String>,
},
/// Update data matching predicate from delta table
Update {
/// The update predicate
predicate: Option<String>,
},
/// Add constraints to a table
AddConstraint {
/// Constraints name
name: String,
/// Expression to check against
expr: String,
},
/// Add table features to a table
AddFeature {
/// Name of the feature
name: Vec<TableFeatures>,
},
/// Drops constraints from a table
DropConstraint {
/// Constraints name
name: String,
},
/// Merge data with a source data with the following predicate
#[serde(rename_all = "camelCase")]
Merge {
/// Cleaned merge predicate for conflict checks
predicate: Option<String>,
/// The original merge predicate
merge_predicate: Option<String>,
/// Match operations performed
matched_predicates: Vec<MergePredicate>,
/// Not Match operations performed
not_matched_predicates: Vec<MergePredicate>,
/// Not Match by Source operations performed
not_matched_by_source_predicates: Vec<MergePredicate>,
},
/// Represents a Delta `StreamingUpdate` operation.
#[serde(rename_all = "camelCase")]
StreamingUpdate {
/// The output mode the streaming writer is using.
output_mode: OutputMode,
/// The query id of the streaming writer.
query_id: String,
/// The epoch id of the written micro-batch.
epoch_id: i64,
},
/// Set table properties operations
#[serde(rename_all = "camelCase")]
SetTableProperties {
/// Table properties that were added
properties: HashMap<String, String>,
},
#[serde(rename_all = "camelCase")]
/// Represents a `Optimize` operation
Optimize {
// TODO: Create a string representation of the filter passed to optimize
/// The filter used to determine which partitions to filter
predicate: Option<String>,
/// Target optimize size
target_size: i64,
},
#[serde(rename_all = "camelCase")]
/// Represents a `FileSystemCheck` operation
FileSystemCheck {},
/// Represents a `Restore` operation
Restore {
/// Version to restore
version: Option<i64>,
///Datetime to restore
datetime: Option<i64>,
}, // TODO: Add more operations
#[serde(rename_all = "camelCase")]
/// Represents the start of `Vacuum` operation
VacuumStart {
/// Whether the retention check is enforced
retention_check_enabled: bool,
/// The specified retetion period in milliseconds
specified_retention_millis: Option<i64>,
/// The default delta table retention milliseconds policy
default_retention_millis: i64,
},
/// Represents the end of `Vacuum` operation
VacuumEnd {
/// The status of the operation
status: String,
},
}
impl DeltaOperation {
/// A human readable name for the operation
pub fn name(&self) -> &str {
// operation names taken from https://learn.microsoft.com/en-us/azure/databricks/delta/history#--operation-metrics-keys
match &self {
DeltaOperation::AddColumn { .. } => "ADD COLUMN",
DeltaOperation::Create {
mode: SaveMode::Overwrite,
..
} => "CREATE OR REPLACE TABLE",
DeltaOperation::Create { .. } => "CREATE TABLE",
DeltaOperation::Write { .. } => "WRITE",
DeltaOperation::Delete { .. } => "DELETE",
DeltaOperation::Update { .. } => "UPDATE",
DeltaOperation::Merge { .. } => "MERGE",
DeltaOperation::StreamingUpdate { .. } => "STREAMING UPDATE",
DeltaOperation::SetTableProperties { .. } => "SET TBLPROPERTIES",
DeltaOperation::Optimize { .. } => "OPTIMIZE",
DeltaOperation::FileSystemCheck { .. } => "FSCK",
DeltaOperation::Restore { .. } => "RESTORE",
DeltaOperation::VacuumStart { .. } => "VACUUM START",
DeltaOperation::VacuumEnd { .. } => "VACUUM END",
DeltaOperation::AddConstraint { .. } => "ADD CONSTRAINT",
DeltaOperation::DropConstraint { .. } => "DROP CONSTRAINT",
DeltaOperation::AddFeature { .. } => "ADD FEATURE",
}
}
/// Parameters configured for operation.
pub fn operation_parameters(&self) -> DeltaResult<HashMap<String, Value>> {
if let Some(Some(Some(map))) = serde_json::to_value(self)
.map_err(|err| ProtocolError::SerializeOperation { source: err })?
.as_object()
.map(|p| p.values().next().map(|q| q.as_object()))
{
Ok(map
.iter()
.filter(|item| !item.1.is_null())
.map(|(k, v)| {
(
k.to_owned(),
serde_json::Value::String(if v.is_string() {
String::from(v.as_str().unwrap())
} else {
v.to_string()
}),
)
})
.collect())
} else {
Err(ProtocolError::Generic(
"Operation parameters serialized into unexpected shape".into(),
)
.into())
}
}
/// Denotes if the operation changes the data contained in the table
pub fn changes_data(&self) -> bool {
match self {
Self::Optimize { .. }
| Self::SetTableProperties { .. }
| Self::AddColumn { .. }
| Self::AddFeature { .. }
| Self::VacuumStart { .. }
| Self::VacuumEnd { .. }
| Self::AddConstraint { .. }
| Self::DropConstraint { .. } => false,
Self::Create { .. }
| Self::FileSystemCheck {}
| Self::StreamingUpdate { .. }
| Self::Write { .. }
| Self::Delete { .. }
| Self::Merge { .. }
| Self::Update { .. }
| Self::Restore { .. } => true,
}
}
/// Retrieve basic commit information to be added to Delta commits
pub fn get_commit_info(&self) -> CommitInfo {
// TODO infer additional info from operation parameters ...
CommitInfo {
operation: Some(self.name().into()),
operation_parameters: self.operation_parameters().ok(),
..Default::default()
}
}
/// Get predicate expression applied when the operation reads data from the table.
pub fn read_predicate(&self) -> Option<String> {
match self {
// TODO add more operations
Self::Write { predicate, .. } => predicate.clone(),
Self::Delete { predicate, .. } => predicate.clone(),
Self::Update { predicate, .. } => predicate.clone(),
Self::Merge { predicate, .. } => predicate.clone(),
_ => None,
}
}
/// Denotes if the operation reads the entire table
pub fn read_whole_table(&self) -> bool {
match self {
// Predicate is none -> Merge operation had to join full source and target
Self::Merge { predicate, .. } if predicate.is_none() => true,
_ => false,
}
}
}
/// The SaveMode used when performing a DeltaOperation
#[derive(Serialize, Deserialize, Debug, Copy, Clone, PartialEq, Eq)]
pub enum SaveMode {
/// Files will be appended to the target location.
Append,
/// The target location will be overwritten.
Overwrite,
/// If files exist for the target, the operation must fail.
ErrorIfExists,
/// If files exist for the target, the operation must not proceed or change any data.
Ignore,
}
impl FromStr for SaveMode {
type Err = DeltaTableError;
fn from_str(s: &str) -> DeltaResult<Self> {
match s.to_ascii_lowercase().as_str() {
"append" => Ok(SaveMode::Append),
"overwrite" => Ok(SaveMode::Overwrite),
"error" => Ok(SaveMode::ErrorIfExists),
"ignore" => Ok(SaveMode::Ignore),
_ => Err(DeltaTableError::Generic(format!(
"Invalid save mode provided: {}, only these are supported: ['append', 'overwrite', 'error', 'ignore']",
s
))),
}
}
}
/// The OutputMode used in streaming operations.
#[derive(Serialize, Deserialize, Debug, Copy, Clone)]
pub enum OutputMode {
/// Only new rows will be written when new data is available.
Append,
/// The full output (all rows) will be written whenever new data is available.
Complete,
/// Only rows with updates will be written when new or changed data is available.
Update,
}
pub(crate) async fn get_last_checkpoint(
log_store: &dyn LogStore,
) -> Result<CheckPoint, ProtocolError> {
let last_checkpoint_path = Path::from_iter(["_delta_log", "_last_checkpoint"]);
debug!("loading checkpoint from {last_checkpoint_path}");
match log_store.object_store().get(&last_checkpoint_path).await {
Ok(data) => Ok(serde_json::from_slice(&data.bytes().await?)?),
Err(ObjectStoreError::NotFound { .. }) => {
match find_latest_check_point_for_version(log_store, i64::MAX).await {
Ok(Some(cp)) => Ok(cp),
_ => Err(ProtocolError::CheckpointNotFound),
}
}
Err(err) => Err(ProtocolError::ObjectStore { source: err }),
}
}
pub(crate) async fn find_latest_check_point_for_version(
log_store: &dyn LogStore,
version: i64,
) -> Result<Option<CheckPoint>, ProtocolError> {
lazy_static! {
static ref CHECKPOINT_REGEX: Regex =
Regex::new(r"^_delta_log/(\d{20})\.checkpoint\.parquet$").unwrap();
static ref CHECKPOINT_PARTS_REGEX: Regex =
Regex::new(r"^_delta_log/(\d{20})\.checkpoint\.\d{10}\.(\d{10})\.parquet$").unwrap();
}
let mut cp: Option<CheckPoint> = None;
let object_store = log_store.object_store();
let mut stream = object_store.list(Some(log_store.log_path()));
while let Some(obj_meta) = stream.next().await {
// Exit early if any objects can't be listed.
// We exclude the special case of a not found error on some of the list entities.
// This error mainly occurs for local stores when a temporary file has been deleted by
// concurrent writers or if the table is vacuumed by another client.
let obj_meta = match obj_meta {
Ok(meta) => Ok(meta),
Err(ObjectStoreError::NotFound { .. }) => continue,
Err(err) => Err(err),
}?;
if let Some(captures) = CHECKPOINT_REGEX.captures(obj_meta.location.as_ref()) {
let curr_ver_str = captures.get(1).unwrap().as_str();
let curr_ver: i64 = curr_ver_str.parse().unwrap();
if curr_ver > version {
// skip checkpoints newer than max version
continue;
}
if cp.is_none() || curr_ver > cp.unwrap().version {
cp = Some(CheckPoint::new(curr_ver, 0, None));
}
continue;
}
if let Some(captures) = CHECKPOINT_PARTS_REGEX.captures(obj_meta.location.as_ref()) {
let curr_ver_str = captures.get(1).unwrap().as_str();
let curr_ver: i64 = curr_ver_str.parse().unwrap();
if curr_ver > version {
// skip checkpoints newer than max version
continue;
}
if cp.is_none() || curr_ver > cp.unwrap().version {
let parts_str = captures.get(2).unwrap().as_str();
let parts = parts_str.parse().unwrap();
cp = Some(CheckPoint::new(curr_ver, 0, Some(parts)));
}
continue;
}
}
Ok(cp)
}
#[cfg(test)]
mod tests {
use super::*;
use crate::kernel::Action;
#[test]
fn test_load_table_stats() {
let action = Add {
stats: Some(
serde_json::json!({
"numRecords": 22,
"minValues": {"a": 1, "nested": {"b": 2, "c": "a"}},
"maxValues": {"a": 10, "nested": {"b": 20, "c": "z"}},
"nullCount": {"a": 1, "nested": {"b": 0, "c": 1}},
})
.to_string(),
),
path: Default::default(),
data_change: true,
deletion_vector: None,
partition_values: Default::default(),
stats_parsed: None,
tags: None,
size: 0,
modification_time: 0,
base_row_id: None,
default_row_commit_version: None,
clustering_provider: None,
};
let stats = action.get_stats().unwrap().unwrap();
assert_eq!(stats.num_records, 22);
assert_eq!(
stats.min_values["a"].as_value().unwrap(),
&serde_json::json!(1)
);
assert_eq!(
stats.min_values["nested"].as_column().unwrap()["b"]
.as_value()
.unwrap(),
&serde_json::json!(2)
);
assert_eq!(
stats.min_values["nested"].as_column().unwrap()["c"]
.as_value()
.unwrap(),
&serde_json::json!("a")
);
assert_eq!(
stats.max_values["a"].as_value().unwrap(),
&serde_json::json!(10)
);
assert_eq!(
stats.max_values["nested"].as_column().unwrap()["b"]
.as_value()
.unwrap(),
&serde_json::json!(20)
);
assert_eq!(
stats.max_values["nested"].as_column().unwrap()["c"]
.as_value()
.unwrap(),
&serde_json::json!("z")
);
assert_eq!(stats.null_count["a"].as_value().unwrap(), 1);
assert_eq!(
stats.null_count["nested"].as_column().unwrap()["b"]
.as_value()
.unwrap(),
0
);
assert_eq!(
stats.null_count["nested"].as_column().unwrap()["c"]
.as_value()
.unwrap(),
1
);
}
#[test]
fn test_load_table_partial_stats() {
let action = Add {
stats: Some(
serde_json::json!({
"numRecords": 22
})
.to_string(),
),
path: Default::default(),
data_change: true,
deletion_vector: None,
partition_values: Default::default(),
stats_parsed: None,
tags: None,
size: 0,
modification_time: 0,
base_row_id: None,
default_row_commit_version: None,
clustering_provider: None,
};
let stats = action.get_stats().unwrap().unwrap();
assert_eq!(stats.num_records, 22);
assert_eq!(stats.min_values.len(), 0);
assert_eq!(stats.max_values.len(), 0);
assert_eq!(stats.null_count.len(), 0);
}
#[test]
fn test_read_commit_info() {
let raw = r#"
{
"timestamp": 1670892998177,
"operation": "WRITE",
"operationParameters": {
"mode": "Append",
"partitionBy": "[\"c1\",\"c2\"]"
},
"isolationLevel": "Serializable",
"isBlindAppend": true,
"operationMetrics": {
"numFiles": "3",
"numOutputRows": "3",
"numOutputBytes": "1356"
},
"engineInfo": "Apache-Spark/3.3.1 Delta-Lake/2.2.0",
"txnId": "046a258f-45e3-4657-b0bf-abfb0f76681c"
}"#;
let info = serde_json::from_str::<CommitInfo>(raw);
assert!(info.is_ok());
// assert that commit info has no required filelds
let raw = "{}";
let info = serde_json::from_str::<CommitInfo>(raw);
assert!(info.is_ok());
// arbitrary field data may be added to commit
let raw = r#"
{
"timestamp": 1670892998177,
"operation": "WRITE",
"operationParameters": {
"mode": "Append",
"partitionBy": "[\"c1\",\"c2\"]"
},
"isolationLevel": "Serializable",
"isBlindAppend": true,
"operationMetrics": {
"numFiles": "3",
"numOutputRows": "3",
"numOutputBytes": "1356"
},
"engineInfo": "Apache-Spark/3.3.1 Delta-Lake/2.2.0",
"txnId": "046a258f-45e3-4657-b0bf-abfb0f76681c",
"additionalField": "more data",
"additionalStruct": {
"key": "value",
"otherKey": 123
}
}"#;
let info = serde_json::from_str::<CommitInfo>(raw).expect("should parse");
assert!(info.info.contains_key("additionalField"));
assert!(info.info.contains_key("additionalStruct"));
}
#[test]
fn test_read_domain_metadata() {
let buf = r#"{"domainMetadata":{"domain":"delta.liquid","configuration":"{\"clusteringColumns\":[{\"physicalName\":[\"id\"]}],\"domainName\":\"delta.liquid\"}","removed":false}}"#;
let _action: Action =
serde_json::from_str(buf).expect("Expected to be able to deserialize");
}
mod arrow_tests {
use arrow::array::{self, ArrayRef, StructArray};
use arrow::compute::kernels::cast_utils::Parser;
use arrow::compute::sort_to_indices;
use arrow::datatypes::{DataType, Date32Type, Field, Fields, TimestampMicrosecondType};
use arrow::record_batch::RecordBatch;
use std::sync::Arc;
fn sort_batch_by(batch: &RecordBatch, column: &str) -> arrow::error::Result<RecordBatch> {
let sort_column = batch.column(batch.schema().column_with_name(column).unwrap().0);
let sort_indices = sort_to_indices(sort_column, None, None)?;
let schema = batch.schema();
let sorted_columns: Vec<(&String, ArrayRef)> = schema
.fields()
.iter()
.zip(batch.columns().iter())
.map(|(field, column)| {
Ok((
field.name(),
arrow::compute::take(column, &sort_indices, None)?,
))
})
.collect::<arrow::error::Result<_>>()?;
RecordBatch::try_from_iter(sorted_columns)
}
#[tokio::test]
async fn test_with_partitions() {
// test table with partitions
let path = "../test/tests/data/delta-0.8.0-null-partition";
let table = crate::open_table(path).await.unwrap();
let actions = table.snapshot().unwrap().add_actions_table(true).unwrap();
let mut expected_columns: Vec<(&str, ArrayRef)> = vec![
("path", Arc::new(array::StringArray::from(vec![
"k=A/part-00000-b1f1dbbb-70bc-4970-893f-9bb772bf246e.c000.snappy.parquet",
"k=__HIVE_DEFAULT_PARTITION__/part-00001-8474ac85-360b-4f58-b3ea-23990c71b932.c000.snappy.parquet"
]))),
("size_bytes", Arc::new(array::Int64Array::from(vec![460, 460]))),
("modification_time", Arc::new(arrow::array::TimestampMillisecondArray::from(vec![
1627990384000, 1627990384000
]))),
("data_change", Arc::new(array::BooleanArray::from(vec![true, true]))),
("partition.k", Arc::new(array::StringArray::from(vec![Some("A"), None]))),
];
let expected = RecordBatch::try_from_iter(expected_columns.clone()).unwrap();
assert_eq!(expected, actions);
let actions = table.snapshot().unwrap().add_actions_table(false).unwrap();
let actions = sort_batch_by(&actions, "path").unwrap();
expected_columns[4] = (
"partition_values",
Arc::new(array::StructArray::new(
Fields::from(vec![Field::new("k", DataType::Utf8, true)]),
vec![Arc::new(array::StringArray::from(vec![Some("A"), None])) as ArrayRef],
None,
)),
);
let expected = RecordBatch::try_from_iter(expected_columns).unwrap();
assert_eq!(expected, actions);
}
#[tokio::test]
async fn test_with_deletion_vector() {
// test table with partitions
let path = "../test/tests/data/table_with_deletion_logs";
let table = crate::open_table(path).await.unwrap();
let actions = table.snapshot().unwrap().add_actions_table(true).unwrap();
let actions = sort_batch_by(&actions, "path").unwrap();
let actions = actions
.project(&[
actions.schema().index_of("path").unwrap(),
actions.schema().index_of("size_bytes").unwrap(),
actions
.schema()
.index_of("deletionVector.storageType")
.unwrap(),
actions
.schema()
.index_of("deletionVector.pathOrInlineDiv")
.unwrap(),
actions.schema().index_of("deletionVector.offset").unwrap(),
actions
.schema()
.index_of("deletionVector.sizeInBytes")
.unwrap(),
actions
.schema()
.index_of("deletionVector.cardinality")
.unwrap(),
])
.unwrap();
let expected_columns: Vec<(&str, ArrayRef)> = vec![
(
"path",
Arc::new(array::StringArray::from(vec![
"part-00000-cb251d5e-b665-437a-a9a7-fbfc5137c77d.c000.snappy.parquet",
])),
),
("size_bytes", Arc::new(array::Int64Array::from(vec![10499]))),
(
"deletionVector.storageType",
Arc::new(array::StringArray::from(vec!["u"])),
),
(
"deletionVector.pathOrInlineDiv",
Arc::new(array::StringArray::from(vec!["Q6Kt3y1b)0MgZSWwPunr"])),
),
(
"deletionVector.offset",
Arc::new(array::Int32Array::from(vec![1])),
),
(
"deletionVector.sizeInBytes",
Arc::new(array::Int32Array::from(vec![36])),
),
(
"deletionVector.cardinality",
Arc::new(array::Int64Array::from(vec![2])),
),
];
let expected = RecordBatch::try_from_iter(expected_columns.clone()).unwrap();
assert_eq!(expected, actions);
let actions = table.snapshot().unwrap().add_actions_table(false).unwrap();
let actions = sort_batch_by(&actions, "path").unwrap();
let actions = actions
.project(&[
actions.schema().index_of("path").unwrap(),
actions.schema().index_of("size_bytes").unwrap(),
actions.schema().index_of("deletionVector").unwrap(),
])
.unwrap();
let expected_columns: Vec<(&str, ArrayRef)> = vec![
(
"path",
Arc::new(array::StringArray::from(vec![