-
Notifications
You must be signed in to change notification settings - Fork 406
/
delta.rs
1709 lines (1545 loc) · 62.7 KB
/
delta.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
//! Delta Table read and write implementation
// Reference: https://github.com/delta-io/delta/blob/master/PROTOCOL.md
//
use std::collections::HashMap;
use std::convert::TryFrom;
use std::fmt;
use std::fmt::Formatter;
use std::io::{BufRead, BufReader, Cursor};
use std::sync::Arc;
use std::{cmp::max, cmp::Ordering, collections::HashSet};
use super::action;
use super::action::{Action, DeltaOperation};
use super::partitions::PartitionFilter;
use super::schema::*;
use super::table_state::DeltaTableState;
use crate::action::{Add, Stats};
use crate::delta_config::DeltaConfigError;
use crate::operations::transaction::TransactionError;
use crate::operations::vacuum::VacuumBuilder;
use crate::storage::{commit_uri_from_version, ObjectStoreRef};
use chrono::{DateTime, Duration, Utc};
use futures::StreamExt;
use lazy_static::lazy_static;
use log::debug;
use object_store::{path::Path, Error as ObjectStoreError, ObjectStore};
use regex::Regex;
use serde::de::{Error, SeqAccess, Visitor};
use serde::ser::SerializeSeq;
use serde::{Deserialize, Deserializer, Serialize, Serializer};
use serde_json::{Map, Value};
use uuid::Uuid;
// TODO re-exports only for transition
pub use crate::builder::{DeltaTableBuilder, DeltaTableConfig, DeltaVersion};
/// Metadata for a checkpoint file
#[derive(Serialize, Deserialize, Debug, Default, Clone, Copy)]
pub struct CheckPoint {
/// Delta table version
pub(crate) version: DeltaDataTypeVersion, // 20 digits decimals
size: DeltaDataTypeLong,
parts: Option<u32>, // 10 digits decimals
}
impl CheckPoint {
/// Creates a new checkpoint from the given parameters.
pub fn new(version: DeltaDataTypeVersion, size: DeltaDataTypeLong, parts: Option<u32>) -> Self {
Self {
version,
size,
parts,
}
}
}
impl PartialEq for CheckPoint {
fn eq(&self, other: &Self) -> bool {
self.version == other.version
}
}
impl Eq for CheckPoint {}
/// A result returned by delta-rs
pub type DeltaResult<T> = Result<T, DeltaTableError>;
/// Delta Table specific error
#[derive(thiserror::Error, Debug)]
pub enum DeltaTableError {
/// Error returned when applying transaction log failed.
#[error("Failed to apply transaction log: {}", .source)]
ApplyLog {
/// Apply error details returned when applying transaction log failed.
#[from]
source: ApplyLogError,
},
/// Error returned when loading checkpoint failed.
#[error("Failed to load checkpoint: {}", .source)]
LoadCheckpoint {
/// Load checkpoint error details returned when loading checkpoint failed.
#[from]
source: LoadCheckpointError,
},
/// Error returned when reading the delta log object failed.
#[error("Failed to read delta log object: {}", .source)]
ObjectStore {
/// Storage error details when reading the delta log object failed.
#[from]
source: ObjectStoreError,
},
/// Error returned when parsing checkpoint parquet.
#[cfg(any(feature = "parquet", feature = "parquet2"))]
#[error("Failed to parse parquet: {}", .source)]
Parquet {
/// Parquet error details returned when reading the checkpoint failed.
#[cfg(feature = "parquet")]
#[from]
source: parquet::errors::ParquetError,
/// Parquet error details returned when reading the checkpoint failed.
#[cfg(feature = "parquet2")]
#[from]
source: parquet2::error::Error,
},
/// Error returned when converting the schema in Arrow format failed.
#[cfg(feature = "arrow")]
#[error("Failed to convert into Arrow schema: {}", .source)]
Arrow {
/// Arrow error details returned when converting the schema in Arrow format failed
#[from]
source: arrow::error::ArrowError,
},
/// Error returned when the log record has an invalid JSON.
#[error("Invalid JSON in log record, version={}, line=`{}`, err=`{}`", .version, .line, .json_err)]
InvalidJsonLog {
/// JSON error details returned when parsing the record JSON.
json_err: serde_json::error::Error,
/// invalid log entry content.
line: String,
/// corresponding table version for the log file.
version: DeltaDataTypeVersion,
},
/// Error returned when the log contains invalid stats JSON.
#[error("Invalid JSON in file stats: {}", .json_err)]
InvalidStatsJson {
/// JSON error details returned when parsing the stats JSON.
json_err: serde_json::error::Error,
},
/// Error returned when the log contains invalid stats JSON.
#[error("Invalid JSON in invariant expression, line=`{line}`, err=`{json_err}`")]
InvalidInvariantJson {
/// JSON error details returned when parsing the invariant expression JSON.
json_err: serde_json::error::Error,
/// Invariant expression.
line: String,
},
/// Error returned when the DeltaTable has an invalid version.
#[error("Invalid table version: {0}")]
InvalidVersion(DeltaDataTypeVersion),
/// Error returned when the DeltaTable has no data files.
#[error("Corrupted table, cannot read data file {}: {}", .path, .source)]
MissingDataFile {
/// Source error details returned when the DeltaTable has no data files.
source: std::io::Error,
/// The Path used of the DeltaTable
path: String,
},
/// Error returned when the datetime string is invalid for a conversion.
#[error("Invalid datetime string: {}", .source)]
InvalidDateTimeString {
/// Parse error details returned of the datetime string parse error.
#[from]
source: chrono::ParseError,
},
/// Error returned when the action record is invalid in log.
#[error("Invalid action record found in log: {}", .source)]
InvalidAction {
/// Action error details returned of the invalid action.
#[from]
source: action::ActionError,
},
/// Error returned when attempting to write bad data to the table
#[error("Attempted to write invalid data to the table: {:#?}", violations)]
InvalidData {
/// Action error details returned of the invalid action.
violations: Vec<String>,
},
/// Error returned when it is not a DeltaTable.
#[error("Not a Delta table: {0}")]
NotATable(String),
/// Error returned when no metadata was found in the DeltaTable.
#[error("No metadata found, please make sure table is loaded.")]
NoMetadata,
/// Error returned when no schema was found in the DeltaTable.
#[error("No schema found, please make sure table is loaded.")]
NoSchema,
/// Error returned when no partition was found in the DeltaTable.
#[error("No partitions found, please make sure table is partitioned.")]
LoadPartitions,
/// Error returned when writes are attempted with data that doesn't match the schema of the
/// table
#[error("Data does not match the schema or partitions of the table: {}", msg)]
SchemaMismatch {
/// Information about the mismatch
msg: String,
},
/// Error returned when a partition is not formatted as a Hive Partition.
#[error("This partition is not formatted with key=value: {}", .partition)]
PartitionError {
/// The malformed partition used.
partition: String,
},
/// Error returned when a invalid partition filter was found.
#[error("Invalid partition filter found: {}.", .partition_filter)]
InvalidPartitionFilter {
/// The invalid partition filter used.
partition_filter: String,
},
/// Error returned when a partition filter uses a nonpartitioned column.
#[error("Tried to filter partitions on non-partitioned columns: {:#?}", .nonpartitioned_columns)]
ColumnsNotPartitioned {
/// The columns used in the partition filter that is not partitioned
nonpartitioned_columns: Vec<String>,
},
/// Error returned when a line from log record is invalid.
#[error("Failed to read line from log record")]
Io {
/// Source error details returned while reading the log record.
#[from]
source: std::io::Error,
},
/// Error raised while commititng transaction
#[error("Transaction failed: {source}")]
Transaction {
/// The source error
source: TransactionError,
},
/// Error returned when transaction is failed to be committed because given version already exists.
#[error("Delta transaction failed, version {0} already exists.")]
VersionAlreadyExists(DeltaDataTypeVersion),
/// Error returned when user attempts to commit actions that don't belong to the next version.
#[error("Delta transaction failed, version {0} does not follow {1}")]
VersionMismatch(DeltaDataTypeVersion, DeltaDataTypeVersion),
/// A Feature is missing to perform operation
#[error("Delta-rs must be build with feature '{feature}' to support loading from: {url}.")]
MissingFeature {
/// Name of the missing feature
feature: &'static str,
/// Storage location url
url: String,
},
/// A Feature is missing to perform operation
#[error("Cannot infer storage location from: {0}")]
InvalidTableLocation(String),
/// Generic Delta Table error
#[error("Log JSON serialization error: {json_err}")]
SerializeLogJson {
/// JSON serialization error
json_err: serde_json::error::Error,
},
/// Generic Delta Table error
#[error("Schema JSON serialization error: {json_err}")]
SerializeSchemaJson {
/// JSON serialization error
json_err: serde_json::error::Error,
},
/// Generic Delta Table error
#[error("Generic DeltaTable error: {0}")]
Generic(String),
/// Generic Delta Table error
#[error("Generic error: {source}")]
GenericError {
/// Source error
source: Box<dyn std::error::Error + Send + Sync + 'static>,
},
}
impl From<object_store::path::Error> for DeltaTableError {
fn from(err: object_store::path::Error) -> Self {
Self::GenericError {
source: Box::new(err),
}
}
}
/// Delta table metadata
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub struct DeltaTableMetaData {
/// Unique identifier for this table
pub id: Guid,
/// User-provided identifier for this table
pub name: Option<String>,
/// User-provided description for this table
pub description: Option<String>,
/// Specification of the encoding for the files stored in the table
pub format: action::Format,
/// Schema of the table
pub schema: Schema,
/// An array containing the names of columns by which the data should be partitioned
pub partition_columns: Vec<String>,
/// The time when this metadata action is created, in milliseconds since the Unix epoch
pub created_time: Option<DeltaDataTypeTimestamp>,
/// table properties
pub configuration: HashMap<String, Option<String>>,
}
impl DeltaTableMetaData {
/// Create metadata for a DeltaTable from scratch
pub fn new(
name: Option<String>,
description: Option<String>,
format: Option<action::Format>,
schema: Schema,
partition_columns: Vec<String>,
configuration: HashMap<String, Option<String>>,
) -> Self {
// Reference implementation uses uuid v4 to create GUID:
// https://github.com/delta-io/delta/blob/master/core/src/main/scala/org/apache/spark/sql/delta/actions/actions.scala#L350
Self {
id: Uuid::new_v4().to_string(),
name,
description,
format: format.unwrap_or_default(),
schema,
partition_columns,
created_time: Some(Utc::now().timestamp_millis()),
configuration,
}
}
/// Return the configurations of the DeltaTableMetaData; could be empty
pub fn get_configuration(&self) -> &HashMap<String, Option<String>> {
&self.configuration
}
/// Return partition fields along with their data type from the current schema.
pub fn get_partition_col_data_types(&self) -> Vec<(&str, &SchemaDataType)> {
// JSON add actions contain a `partitionValues` field which is a map<string, string>.
// When loading `partitionValues_parsed` we have to convert the stringified partition values back to the correct data type.
self.schema
.get_fields()
.iter()
.filter_map(|f| {
if self
.partition_columns
.iter()
.any(|s| s.as_str() == f.get_name())
{
Some((f.get_name(), f.get_type()))
} else {
None
}
})
.collect()
}
}
impl fmt::Display for DeltaTableMetaData {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"GUID={}, name={:?}, description={:?}, partitionColumns={:?}, createdTime={:?}, configuration={:?}",
self.id, self.name, self.description, self.partition_columns, self.created_time, self.configuration
)
}
}
impl TryFrom<action::MetaData> for DeltaTableMetaData {
type Error = serde_json::error::Error;
fn try_from(action_metadata: action::MetaData) -> Result<Self, Self::Error> {
let schema = action_metadata.get_schema()?;
Ok(Self {
id: action_metadata.id,
name: action_metadata.name,
description: action_metadata.description,
format: action_metadata.format,
schema,
partition_columns: action_metadata.partition_columns,
created_time: action_metadata.created_time,
configuration: action_metadata.configuration,
})
}
}
/// Error related to Delta log application
#[derive(thiserror::Error, Debug)]
pub enum ApplyLogError {
/// Error returned when the end of transaction log is reached.
#[error("End of transaction log")]
EndOfLog,
/// Error returned when the JSON of the log record is invalid.
#[error("Invalid JSON found when applying log record")]
InvalidJson {
/// JSON error details returned when reading the JSON log record.
#[from]
source: serde_json::error::Error,
},
/// Error returned when the storage failed to read the log content.
#[error("Failed to read log content")]
Storage {
/// Storage error details returned while reading the log content.
source: ObjectStoreError,
},
/// Error returned when reading delta config failed.
#[error("Failed to read delta config: {}", .source)]
Config {
/// Delta config error returned when reading delta config failed.
#[from]
source: DeltaConfigError,
},
/// Error returned when a line from log record is invalid.
#[error("Failed to read line from log record")]
Io {
/// Source error details returned while reading the log record.
#[from]
source: std::io::Error,
},
/// Error returned when the action record is invalid in log.
#[error("Invalid action record found in log: {}", .source)]
InvalidAction {
/// Action error details returned of the invalid action.
#[from]
source: action::ActionError,
},
}
impl From<ObjectStoreError> for ApplyLogError {
fn from(error: ObjectStoreError) -> Self {
match error {
ObjectStoreError::NotFound { .. } => ApplyLogError::EndOfLog,
_ => ApplyLogError::Storage { source: error },
}
}
}
/// Error related to checkpoint loading
#[derive(thiserror::Error, Debug)]
pub enum LoadCheckpointError {
/// Error returned when the JSON checkpoint is not found.
#[error("Checkpoint file not found")]
NotFound,
/// Error returned when the JSON checkpoint is invalid.
#[error("Invalid JSON in checkpoint: {source}")]
InvalidJson {
/// Error details returned while reading the JSON.
#[from]
source: serde_json::error::Error,
},
/// Error returned when it failed to read the checkpoint content.
#[error("Failed to read checkpoint content: {source}")]
Storage {
/// Storage error details returned while reading the checkpoint content.
source: ObjectStoreError,
},
}
impl From<ObjectStoreError> for LoadCheckpointError {
fn from(error: ObjectStoreError) -> Self {
match error {
ObjectStoreError::NotFound { .. } => LoadCheckpointError::NotFound,
_ => LoadCheckpointError::Storage { source: error },
}
}
}
/// The next commit that's available from underlying storage
/// TODO: Maybe remove this and replace it with Some/None and create a `Commit` struct to contain the next commit
///
#[derive(Debug)]
pub enum PeekCommit {
/// The next commit version and associated actions
New(DeltaDataTypeVersion, Vec<Action>),
/// Provided DeltaVersion is up to date
UpToDate,
}
/// In memory representation of a Delta Table
pub struct DeltaTable {
/// The state of the table as of the most recent loaded Delta log entry.
pub state: DeltaTableState,
/// the load options used during load
pub config: DeltaTableConfig,
/// object store to access log and data files
pub(crate) storage: ObjectStoreRef,
/// file metadata for latest checkpoint
last_check_point: Option<CheckPoint>,
/// table versions associated with timestamps
version_timestamp: HashMap<DeltaDataTypeVersion, i64>,
}
impl Serialize for DeltaTable {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut seq = serializer.serialize_seq(None)?;
seq.serialize_element(&self.state)?;
seq.serialize_element(&self.config)?;
seq.serialize_element(self.storage.as_ref())?;
seq.serialize_element(&self.last_check_point)?;
seq.serialize_element(&self.version_timestamp)?;
seq.end()
}
}
impl<'de> Deserialize<'de> for DeltaTable {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
struct DeltaTableVisitor {}
impl<'de> Visitor<'de> for DeltaTableVisitor {
type Value = DeltaTable;
fn expecting(&self, formatter: &mut Formatter) -> fmt::Result {
formatter.write_str("struct DeltaTable")
}
fn visit_seq<A>(self, mut seq: A) -> Result<Self::Value, A::Error>
where
A: SeqAccess<'de>,
{
let state = seq
.next_element()?
.ok_or_else(|| A::Error::invalid_length(0, &self))?;
let config = seq
.next_element()?
.ok_or_else(|| A::Error::invalid_length(0, &self))?;
let storage = seq
.next_element()?
.ok_or_else(|| A::Error::invalid_length(0, &self))?;
let last_check_point = seq
.next_element()?
.ok_or_else(|| A::Error::invalid_length(0, &self))?;
let version_timestamp = seq
.next_element()?
.ok_or_else(|| A::Error::invalid_length(0, &self))?;
let table = DeltaTable {
state,
config,
storage: Arc::new(storage),
last_check_point,
version_timestamp,
};
Ok(table)
}
}
deserializer.deserialize_seq(DeltaTableVisitor {})
}
}
impl DeltaTable {
/// Create a new Delta Table struct without loading any data from backing storage.
///
/// NOTE: This is for advanced users. If you don't know why you need to use this method, please
/// call one of the `open_table` helper methods instead.
pub fn new(storage: ObjectStoreRef, config: DeltaTableConfig) -> Self {
Self {
state: DeltaTableState::with_version(-1),
storage,
config,
last_check_point: None,
version_timestamp: HashMap::new(),
}
}
/// Create a new [`DeltaTable`] from a [`DeltaTableState`] without loading any
/// data from backing storage.
///
/// NOTE: This is for advanced users. If you don't know why you need to use this method,
/// please call one of the `open_table` helper methods instead.
pub(crate) fn new_with_state(storage: ObjectStoreRef, state: DeltaTableState) -> Self {
Self {
state,
storage,
config: Default::default(),
last_check_point: None,
version_timestamp: HashMap::new(),
}
}
/// get a shared reference to the delta object store
pub fn object_store(&self) -> ObjectStoreRef {
self.storage.clone()
}
/// The URI of the underlying data
pub fn table_uri(&self) -> String {
self.storage.root_uri()
}
/// Return the list of paths of given checkpoint.
pub fn get_checkpoint_data_paths(&self, check_point: &CheckPoint) -> Vec<Path> {
let checkpoint_prefix = format!("{:020}", check_point.version);
let log_path = self.storage.log_path();
let mut checkpoint_data_paths = Vec::new();
match check_point.parts {
None => {
let path = log_path.child(&*format!("{checkpoint_prefix}.checkpoint.parquet"));
checkpoint_data_paths.push(path);
}
Some(parts) => {
for i in 0..parts {
let path = log_path.child(&*format!(
"{}.checkpoint.{:010}.{:010}.parquet",
checkpoint_prefix,
i + 1,
parts
));
checkpoint_data_paths.push(path);
}
}
}
checkpoint_data_paths
}
/// This method scans delta logs to find the earliest delta log version
async fn get_earliest_delta_log_version(
&self,
) -> Result<DeltaDataTypeVersion, DeltaTableError> {
// TODO check if regex matches against path
lazy_static! {
static ref DELTA_LOG_REGEX: Regex =
Regex::new(r#"^_delta_log/(\d{20})\.(json|checkpoint)*$"#).unwrap();
}
let mut current_delta_log_ver = DeltaDataTypeVersion::MAX;
// Get file objects from table.
let mut stream = self.storage.list(Some(self.storage.log_path())).await?;
while let Some(obj_meta) = stream.next().await {
let obj_meta = obj_meta?;
if let Some(captures) = DELTA_LOG_REGEX.captures(obj_meta.location.as_ref()) {
let log_ver_str = captures.get(1).unwrap().as_str();
let log_ver: DeltaDataTypeVersion = log_ver_str.parse().unwrap();
if log_ver < current_delta_log_ver {
current_delta_log_ver = log_ver;
}
}
}
Ok(current_delta_log_ver)
}
async fn get_last_checkpoint(&self) -> Result<CheckPoint, LoadCheckpointError> {
let last_checkpoint_path = Path::from_iter(["_delta_log", "_last_checkpoint"]);
debug!("loading checkpoint from {last_checkpoint_path}");
match self.storage.get(&last_checkpoint_path).await {
Ok(data) => Ok(serde_json::from_slice(&data.bytes().await?)?),
Err(ObjectStoreError::NotFound { .. }) => {
match self
.find_latest_check_point_for_version(DeltaDataTypeVersion::MAX)
.await
{
Ok(Some(cp)) => Ok(cp),
_ => Err(LoadCheckpointError::NotFound),
}
}
Err(err) => Err(LoadCheckpointError::Storage { source: err }),
}
}
async fn find_latest_check_point_for_version(
&self,
version: DeltaDataTypeVersion,
) -> Result<Option<CheckPoint>, DeltaTableError> {
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 mut stream = self.storage.list(Some(self.storage.log_path())).await?;
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: DeltaDataTypeVersion = 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 {
version: curr_ver,
size: 0,
parts: 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: DeltaDataTypeVersion = 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 {
version: curr_ver,
size: 0,
parts: Some(parts),
});
}
continue;
}
}
Ok(cp)
}
#[cfg(any(feature = "parquet", feature = "parquet2"))]
async fn restore_checkpoint(&mut self, check_point: CheckPoint) -> Result<(), DeltaTableError> {
self.state = DeltaTableState::from_checkpoint(self, &check_point).await?;
Ok(())
}
async fn get_latest_version(&mut self) -> Result<DeltaDataTypeVersion, DeltaTableError> {
let mut version = match self.get_last_checkpoint().await {
Ok(last_check_point) => last_check_point.version + 1,
Err(LoadCheckpointError::NotFound) => {
// no checkpoint, start with version 0
0
}
Err(e) => {
return Err(DeltaTableError::LoadCheckpoint { source: e });
}
};
debug!("start with latest checkpoint version: {version}");
// scan logs after checkpoint
loop {
match self.storage.head(&commit_uri_from_version(version)).await {
Ok(meta) => {
// also cache timestamp for version
self.version_timestamp
.insert(version, meta.last_modified.timestamp());
version += 1;
}
Err(e) => {
match e {
ObjectStoreError::NotFound { .. } => {
version -= 1;
if version < 0 {
let err = format!(
"No snapshot or version 0 found, perhaps {} is an empty dir?",
self.table_uri()
);
return Err(DeltaTableError::NotATable(err));
}
}
_ => return Err(DeltaTableError::from(e)),
}
break;
}
}
}
Ok(version)
}
/// Currently loaded version of the table
pub fn version(&self) -> DeltaDataTypeVersion {
self.state.version()
}
/// Load DeltaTable with data from latest checkpoint
pub async fn load(&mut self) -> Result<(), DeltaTableError> {
self.last_check_point = None;
self.state = DeltaTableState::with_version(-1);
self.update().await
}
/// Get the list of actions for the next commit
pub async fn peek_next_commit(
&self,
current_version: DeltaDataTypeVersion,
) -> Result<PeekCommit, DeltaTableError> {
let next_version = current_version + 1;
let commit_uri = commit_uri_from_version(next_version);
let commit_log_bytes = self.storage.get(&commit_uri).await;
let commit_log_bytes = match commit_log_bytes {
Err(ObjectStoreError::NotFound { .. }) => return Ok(PeekCommit::UpToDate),
Err(err) => Err(err),
Ok(result) => result.bytes().await,
}?;
debug!("parsing commit with version {next_version}...");
let reader = BufReader::new(Cursor::new(commit_log_bytes));
let mut actions = Vec::new();
for re_line in reader.lines() {
let line = re_line?;
let lstr = line.as_str();
let action =
serde_json::from_str(lstr).map_err(|e| DeltaTableError::InvalidJsonLog {
json_err: e,
version: next_version,
line,
})?;
actions.push(action);
}
Ok(PeekCommit::New(next_version, actions))
}
/// Updates the DeltaTable to the most recent state committed to the transaction log by
/// loading the last checkpoint and incrementally applying each version since.
#[cfg(any(feature = "parquet", feature = "parquet2"))]
pub async fn update(&mut self) -> Result<(), DeltaTableError> {
match self.get_last_checkpoint().await {
Ok(last_check_point) => {
debug!("update with latest checkpoint {last_check_point:?}");
if Some(last_check_point) == self.last_check_point {
self.update_incremental(None).await
} else {
self.last_check_point = Some(last_check_point);
self.restore_checkpoint(last_check_point).await?;
self.update_incremental(None).await
}
}
Err(LoadCheckpointError::NotFound) => {
debug!("update without checkpoint");
self.update_incremental(None).await
}
Err(source) => Err(DeltaTableError::LoadCheckpoint { source }),
}
}
/// Updates the DeltaTable to the most recent state committed to the transaction log.
#[cfg(not(any(feature = "parquet", feature = "parquet2")))]
pub async fn update(&mut self) -> Result<(), DeltaTableError> {
self.update_incremental(None).await
}
/// Updates the DeltaTable to the latest version by incrementally applying newer versions.
/// It assumes that the table is already updated to the current version `self.version`.
pub async fn update_incremental(
&mut self,
max_version: Option<DeltaDataTypeVersion>,
) -> Result<(), DeltaTableError> {
debug!(
"incremental update with version({}) and max_version({max_version:?})",
self.version(),
);
while let PeekCommit::New(new_version, actions) =
self.peek_next_commit(self.version()).await?
{
debug!("merging table state with version: {new_version}");
let s = DeltaTableState::from_actions(actions, new_version)?;
self.state
.merge(s, self.config.require_tombstones, self.config.require_files);
if Some(self.version()) == max_version {
return Ok(());
}
}
if self.version() == -1 {
let err = format!(
"No snapshot or version 0 found, perhaps {} is an empty dir?",
self.table_uri()
);
return Err(DeltaTableError::NotATable(err));
}
Ok(())
}
/// Loads the DeltaTable state for the given version.
pub async fn load_version(
&mut self,
version: DeltaDataTypeVersion,
) -> Result<(), DeltaTableError> {
// check if version is valid
let commit_uri = commit_uri_from_version(version);
match self.storage.head(&commit_uri).await {
Ok(_) => {}
Err(ObjectStoreError::NotFound { .. }) => {
return Err(DeltaTableError::InvalidVersion(version));
}
Err(e) => {
return Err(DeltaTableError::from(e));
}
}
// 1. find latest checkpoint below version
#[cfg(any(feature = "parquet", feature = "parquet2"))]
match self.find_latest_check_point_for_version(version).await? {
Some(check_point) => {
self.restore_checkpoint(check_point).await?;
}
None => {
// no checkpoint found, clear table state and start from the beginning
self.state = DeltaTableState::with_version(-1);
}
}
debug!("update incrementally from version {version}");
// 2. apply all logs starting from checkpoint
self.update_incremental(Some(version)).await?;
Ok(())
}
pub(crate) async fn get_version_timestamp(
&mut self,
version: DeltaDataTypeVersion,
) -> Result<i64, DeltaTableError> {
match self.version_timestamp.get(&version) {
Some(ts) => Ok(*ts),
None => {
let meta = self.storage.head(&commit_uri_from_version(version)).await?;
let ts = meta.last_modified.timestamp();
// also cache timestamp for version
self.version_timestamp.insert(version, ts);
Ok(ts)
}
}
}
/// Returns provenance information, including the operation, user, and so on, for each write to a table.
/// The table history retention is based on the `logRetentionDuration` property of the Delta Table, 30 days by default.
/// If `limit` is given, this returns the information of the latest `limit` commits made to this table. Otherwise,
/// it returns all commits from the earliest commit.
pub async fn history(
&mut self,
limit: Option<usize>,
) -> Result<Vec<action::CommitInfo>, DeltaTableError> {
let mut version = match limit {
Some(l) => max(self.version() - l as i64 + 1, 0),
None => self.get_earliest_delta_log_version().await?,
};
let mut commit_infos_list = vec![];
let mut earliest_commit: Option<DeltaDataTypeVersion> = None;
loop {
match DeltaTableState::from_commit(self, version).await {
Ok(state) => {
commit_infos_list.append(state.commit_infos().clone().as_mut());
version += 1;
}
Err(e) => {
match e {
ApplyLogError::EndOfLog => {
if earliest_commit.is_none() {
earliest_commit =
Some(self.get_earliest_delta_log_version().await?);
};
if let Some(earliest) = earliest_commit {
if version < earliest {
version = earliest;
continue;
}
} else {
version -= 1;
if version == -1 {
let err = format!(
"No snapshot or version 0 found, perhaps {} is an empty dir?",
self.table_uri()
);
return Err(DeltaTableError::NotATable(err));
}
}
}
_ => {
return Err(DeltaTableError::from(e));
}
}
return Ok(commit_infos_list);
}
}
}
}
/// Obtain Add actions for files that match the filter
pub fn get_active_add_actions_by_partitions<'a>(
&'a self,
filters: &'a [PartitionFilter<'a, &'a str>],
) -> Result<impl Iterator<Item = &'a Add> + '_, DeltaTableError> {
self.state.get_active_add_actions_by_partitions(filters)
}
/// Returns the file list tracked in current table state filtered by provided
/// `PartitionFilter`s.
pub fn get_files_by_partitions(
&self,
filters: &[PartitionFilter<&str>],