-
Notifications
You must be signed in to change notification settings - Fork 470
Expand file tree
/
Copy pathtest_snapshots.py
More file actions
553 lines (472 loc) · 19.5 KB
/
test_snapshots.py
File metadata and controls
553 lines (472 loc) · 19.5 KB
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
# 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.
# pylint:disable=redefined-outer-name,eval-used
from typing import cast
import pytest
from pyiceberg.manifest import DataFile, DataFileContent, ManifestContent, ManifestFile
from pyiceberg.partitioning import PartitionField, PartitionSpec
from pyiceberg.schema import Schema
from pyiceberg.table import Table
from pyiceberg.table.snapshots import (
Operation,
Snapshot,
SnapshotSummaryCollector,
Summary,
ancestors_between,
ancestors_of,
latest_ancestor_before_timestamp,
update_snapshot_summaries,
)
from pyiceberg.transforms import IdentityTransform
from pyiceberg.typedef import Record
from pyiceberg.types import (
BooleanType,
IntegerType,
NestedField,
StringType,
)
@pytest.fixture
def snapshot() -> Snapshot:
return Snapshot(
snapshot_id=25,
parent_snapshot_id=19,
sequence_number=200,
timestamp_ms=1602638573590,
manifest_list="s3:/a/b/c.avro",
summary=Summary(Operation.APPEND),
schema_id=3,
)
@pytest.fixture
def snapshot_with_properties() -> Snapshot:
return Snapshot(
snapshot_id=25,
parent_snapshot_id=19,
sequence_number=200,
timestamp_ms=1602638573590,
manifest_list="s3:/a/b/c.avro",
summary=Summary(Operation.APPEND, foo="bar"),
schema_id=3,
)
def test_serialize_summary() -> None:
assert Summary(Operation.APPEND).model_dump_json() == """{"operation":"append"}"""
def test_serialize_summary_with_properties() -> None:
summary = Summary(Operation.APPEND, property="yes")
assert summary.model_dump_json() == """{"operation":"append","property":"yes"}"""
def test_serialize_snapshot(snapshot: Snapshot) -> None:
assert snapshot.model_dump_json() == (
'{"snapshot-id":25,"parent-snapshot-id":19,"sequence-number":200,"timestamp-ms":1602638573590,'
'"manifest-list":"s3:/a/b/c.avro","summary":{"operation":"append"},"schema-id":3}'
)
def test_serialize_snapshot_without_sequence_number() -> None:
snapshot = Snapshot(
snapshot_id=25,
parent_snapshot_id=19,
sequence_number=None,
timestamp_ms=1602638573590,
manifest_list="s3:/a/b/c.avro",
summary=Summary(Operation.APPEND),
schema_id=3,
)
actual = snapshot.model_dump_json()
expected = (
'{"snapshot-id":25,"parent-snapshot-id":19,"timestamp-ms":1602638573590,'
'"manifest-list":"s3:/a/b/c.avro","summary":{"operation":"append"},"schema-id":3}'
)
assert actual == expected
def test_serialize_snapshot_with_properties(snapshot_with_properties: Snapshot) -> None:
assert snapshot_with_properties.model_dump_json() == (
'{"snapshot-id":25,"parent-snapshot-id":19,"sequence-number":200,"timestamp-ms":1602638573590,'
'"manifest-list":"s3:/a/b/c.avro","summary":{"operation":"append","foo":"bar"},"schema-id":3}'
)
def test_deserialize_summary() -> None:
summary = Summary.model_validate_json("""{"operation": "append"}""")
assert summary.operation == Operation.APPEND
def test_deserialize_summary_with_properties() -> None:
summary = Summary.model_validate_json("""{"operation": "append", "property": "yes"}""")
assert summary.operation == Operation.APPEND
assert summary.additional_properties == {"property": "yes"}
def test_deserialize_snapshot(snapshot: Snapshot) -> None:
payload = (
'{"snapshot-id": 25, "parent-snapshot-id": 19, "sequence-number": 200, "timestamp-ms": 1602638573590, '
'"manifest-list": "s3:/a/b/c.avro", "summary": {"operation": "append"}, "schema-id": 3}'
)
actual = Snapshot.model_validate_json(payload)
assert actual == snapshot
def test_deserialize_snapshot_without_operation(snapshot: Snapshot) -> None:
payload = (
'{"snapshot-id": 25, "parent-snapshot-id": 19, "sequence-number": 200, "timestamp-ms": 1602638573590, '
'"manifest-list": "s3:/a/b/c.avro", "summary": {}, "schema-id": 3}'
)
with pytest.warns(UserWarning, match="Encountered invalid snapshot summary: operation is missing, defaulting to overwrite"):
actual = Snapshot.model_validate_json(payload)
assert actual.summary.operation == Operation.OVERWRITE
def test_deserialize_snapshot_with_properties(snapshot_with_properties: Snapshot) -> None:
payload = (
'{"snapshot-id":25,"parent-snapshot-id":19,"sequence-number":200,"timestamp-ms":1602638573590,'
'"manifest-list":"s3:/a/b/c.avro","summary":{"operation":"append","foo":"bar"},"schema-id":3}'
)
snapshot = Snapshot.model_validate_json(payload)
assert snapshot == snapshot_with_properties
def test_snapshot_repr(snapshot: Snapshot) -> None:
assert repr(snapshot) == (
"Snapshot(snapshot_id=25, parent_snapshot_id=19, sequence_number=200, timestamp_ms=1602638573590, "
"manifest_list='s3:/a/b/c.avro', summary=Summary(Operation.APPEND), schema_id=3)"
)
assert snapshot == eval(repr(snapshot))
def test_snapshot_with_properties_repr(snapshot_with_properties: Snapshot) -> None:
assert repr(snapshot_with_properties) == (
"Snapshot(snapshot_id=25, parent_snapshot_id=19, sequence_number=200, timestamp_ms=1602638573590, "
"manifest_list='s3:/a/b/c.avro', summary=Summary(Operation.APPEND, **{'foo': 'bar'}), schema_id=3)"
)
assert snapshot_with_properties == eval(repr(snapshot_with_properties))
@pytest.fixture
def manifest_file() -> ManifestFile:
return ManifestFile.from_args(
content=ManifestContent.DATA,
manifest_length=100,
added_files_count=1,
existing_files_count=2,
deleted_files_count=3,
added_rows_count=100,
existing_rows_count=110,
deleted_rows_count=120,
)
@pytest.mark.integration
def test_snapshot_summary_collector(table_schema_simple: Schema) -> None:
ssc = SnapshotSummaryCollector()
assert ssc.build() == {}
data_file = DataFile.from_args(content=DataFileContent.DATA, record_count=100, file_size_in_bytes=1234, partition=Record())
ssc.add_file(data_file, schema=table_schema_simple)
assert ssc.build() == {
"added-data-files": "1",
"added-files-size": "1234",
"added-records": "100",
}
@pytest.mark.integration
def test_snapshot_summary_collector_with_partition() -> None:
# Given
ssc = SnapshotSummaryCollector()
assert ssc.build() == {}
schema = Schema(
NestedField(field_id=1, name="bool_field", field_type=BooleanType(), required=False),
NestedField(field_id=2, name="string_field", field_type=StringType(), required=False),
NestedField(field_id=3, name="int_field", field_type=IntegerType(), required=False),
)
spec = PartitionSpec(PartitionField(source_id=3, field_id=1001, transform=IdentityTransform(), name="int_field"))
data_file_1 = DataFile.from_args(content=DataFileContent.DATA, record_count=100, file_size_in_bytes=1234, partition=Record(1))
data_file_2 = DataFile.from_args(content=DataFileContent.DATA, record_count=200, file_size_in_bytes=4321, partition=Record(2))
# When
ssc.add_file(data_file=data_file_1, schema=schema, partition_spec=spec)
ssc.remove_file(data_file=data_file_1, schema=schema, partition_spec=spec)
ssc.remove_file(data_file=data_file_2, schema=schema, partition_spec=spec)
# Then
assert ssc.build() == {
"added-files-size": "1234",
"removed-files-size": "5555",
"added-data-files": "1",
"deleted-data-files": "2",
"added-records": "100",
"deleted-records": "300",
"changed-partition-count": "2",
}
# When
ssc.set_partition_summary_limit(10)
# Then
assert ssc.build() == {
"added-files-size": "1234",
"removed-files-size": "5555",
"added-data-files": "1",
"deleted-data-files": "2",
"added-records": "100",
"deleted-records": "300",
"changed-partition-count": "2",
"partition-summaries-included": "true",
"partitions.int_field=1": (
"added-files-size=1234,removed-files-size=1234,added-data-files=1,"
"deleted-data-files=1,added-records=100,deleted-records=100"
),
"partitions.int_field=2": "removed-files-size=4321,deleted-data-files=1,deleted-records=200",
}
@pytest.mark.integration
def test_snapshot_summary_collector_with_partition_limit_in_constructor() -> None:
# Given
partition_summary_limit = 10
ssc = SnapshotSummaryCollector(partition_summary_limit=partition_summary_limit)
assert ssc.build() == {}
schema = Schema(
NestedField(field_id=1, name="bool_field", field_type=BooleanType(), required=False),
NestedField(field_id=2, name="string_field", field_type=StringType(), required=False),
NestedField(field_id=3, name="int_field", field_type=IntegerType(), required=False),
)
spec = PartitionSpec(PartitionField(source_id=3, field_id=1001, transform=IdentityTransform(), name="int_field"))
data_file_1 = DataFile.from_args(content=DataFileContent.DATA, record_count=100, file_size_in_bytes=1234, partition=Record(1))
data_file_2 = DataFile.from_args(content=DataFileContent.DATA, record_count=200, file_size_in_bytes=4321, partition=Record(2))
# When
ssc.add_file(data_file=data_file_1, schema=schema, partition_spec=spec)
ssc.remove_file(data_file=data_file_1, schema=schema, partition_spec=spec)
ssc.remove_file(data_file=data_file_2, schema=schema, partition_spec=spec)
# Then
assert ssc.build() == {
"added-files-size": "1234",
"removed-files-size": "5555",
"added-data-files": "1",
"deleted-data-files": "2",
"added-records": "100",
"deleted-records": "300",
"changed-partition-count": "2",
"partition-summaries-included": "true",
"partitions.int_field=1": (
"added-files-size=1234,removed-files-size=1234,added-data-files=1,"
"deleted-data-files=1,added-records=100,deleted-records=100"
),
"partitions.int_field=2": "removed-files-size=4321,deleted-data-files=1,deleted-records=200",
}
@pytest.mark.integration
def test_partition_summaries_included_not_set_when_no_change() -> None:
ssc = SnapshotSummaryCollector()
# No files added, so no partition_metrics
ssc.set_partition_summary_limit(10)
result = ssc.build()
assert "partition-summaries-included" not in result
assert result == {} # Should be empty dict
@pytest.mark.integration
def test_partition_summaries_included_not_set_when_unpartitioned_files(table_schema_simple: Schema) -> None:
ssc = SnapshotSummaryCollector()
data_file = DataFile.from_args(content=DataFileContent.DATA, record_count=100, file_size_in_bytes=1234, partition=Record())
ssc.add_file(data_file, schema=table_schema_simple)
ssc.set_partition_summary_limit(10)
result = ssc.build()
assert "partition-summaries-included" not in result
def test_merge_snapshot_summaries_empty() -> None:
assert update_snapshot_summaries(Summary(Operation.APPEND)) == Summary(
operation=Operation.APPEND,
**{
"total-data-files": "0",
"total-delete-files": "0",
"total-records": "0",
"total-files-size": "0",
"total-position-deletes": "0",
"total-equality-deletes": "0",
},
)
def test_merge_snapshot_summaries_new_summary() -> None:
actual = update_snapshot_summaries(
summary=Summary(
operation=Operation.APPEND,
**{
"added-data-files": "1",
"added-delete-files": "2",
"added-equality-deletes": "3",
"added-files-size": "4",
"added-position-deletes": "5",
"added-records": "6",
},
)
)
expected = Summary(
operation=Operation.APPEND,
**{
"added-data-files": "1",
"added-delete-files": "2",
"added-equality-deletes": "3",
"added-files-size": "4",
"added-position-deletes": "5",
"added-records": "6",
"total-data-files": "1",
"total-delete-files": "2",
"total-records": "6",
"total-files-size": "4",
"total-position-deletes": "5",
"total-equality-deletes": "3",
},
)
assert actual == expected
def test_merge_snapshot_summaries_overwrite_summary() -> None:
actual = update_snapshot_summaries(
summary=Summary(
operation=Operation.OVERWRITE,
**{
"added-data-files": "1",
"added-delete-files": "2",
"added-equality-deletes": "3",
"added-files-size": "4",
"added-position-deletes": "5",
"added-records": "6",
},
),
previous_summary={
"total-data-files": "1",
"total-delete-files": "1",
"total-equality-deletes": "1",
"total-files-size": "1",
"total-position-deletes": "1",
"total-records": "1",
},
)
expected = {
"added-data-files": "1",
"added-delete-files": "2",
"added-equality-deletes": "3",
"added-files-size": "4",
"added-position-deletes": "5",
"added-records": "6",
"total-data-files": "2",
"total-delete-files": "3",
"total-records": "7",
"total-files-size": "5",
"total-position-deletes": "6",
"total-equality-deletes": "4",
}
assert actual.additional_properties == expected
def test_invalid_operation() -> None:
with pytest.raises(ValueError) as e:
update_snapshot_summaries(summary=Summary(Operation("invalid")))
assert "'invalid' is not a valid Operation" in str(e.value)
def test_invalid_type() -> None:
with pytest.raises(ValueError) as e:
update_snapshot_summaries(
summary=Summary(
operation=Operation.OVERWRITE,
**{
"added-data-files": "1",
"added-delete-files": "2",
"added-equality-deletes": "3",
"added-files-size": "4",
"added-position-deletes": "5",
"added-records": "6",
},
),
previous_summary={"total-data-files": "abc"}, # should be a number
)
assert "Could not parse summary property total-data-files to an int: abc" in str(e.value)
def test_ancestors_of(table_v2: Table) -> None:
assert list(ancestors_of(table_v2.current_snapshot(), table_v2.metadata)) == [
Snapshot(
snapshot_id=3055729675574597004,
parent_snapshot_id=3051729675574597004,
sequence_number=1,
timestamp_ms=1555100955770,
manifest_list="s3://a/b/2.avro",
summary=Summary(Operation.APPEND),
schema_id=1,
),
Snapshot(
snapshot_id=3051729675574597004,
parent_snapshot_id=None,
sequence_number=0,
timestamp_ms=1515100955770,
manifest_list="s3://a/b/1.avro",
summary=Summary(Operation.APPEND),
schema_id=None,
),
]
def test_ancestors_of_recursive_error(table_v2_with_extensive_snapshots: Table) -> None:
# Test RecursionError: maximum recursion depth exceeded
assert (
len(
list(
ancestors_of(
table_v2_with_extensive_snapshots.current_snapshot(),
table_v2_with_extensive_snapshots.metadata,
)
)
)
== 2000
)
def test_ancestors_between(table_v2_with_extensive_snapshots: Table) -> None:
oldest_snapshot = table_v2_with_extensive_snapshots.snapshots()[0]
current_snapshot = cast(Snapshot, table_v2_with_extensive_snapshots.current_snapshot())
assert (
len(
list(
ancestors_between(
oldest_snapshot,
current_snapshot,
table_v2_with_extensive_snapshots.metadata,
)
)
)
== 2000
)
def test_latest_ancestor_before_timestamp() -> None:
from pyiceberg.table.metadata import TableMetadataV2
# Create metadata with 4 snapshots at ordered timestamps
metadata = TableMetadataV2(
**{
"format-version": 2,
"table-uuid": "9c12d441-03fe-4693-9a96-a0705ddf69c1",
"location": "s3://bucket/test/location",
"last-sequence-number": 4,
"last-updated-ms": 1602638573590,
"last-column-id": 1,
"current-schema-id": 0,
"schemas": [{"type": "struct", "schema-id": 0, "fields": [{"id": 1, "name": "x", "required": True, "type": "long"}]}],
"default-spec-id": 0,
"partition-specs": [{"spec-id": 0, "fields": []}],
"last-partition-id": 999,
"default-sort-order-id": 0,
"sort-orders": [{"order-id": 0, "fields": []}],
"current-snapshot-id": 4,
"snapshots": [
{
"snapshot-id": 1,
"timestamp-ms": 1000,
"sequence-number": 1,
"summary": {"operation": "append"},
"manifest-list": "s3://a/1.avro",
},
{
"snapshot-id": 2,
"parent-snapshot-id": 1,
"timestamp-ms": 2000,
"sequence-number": 2,
"summary": {"operation": "append"},
"manifest-list": "s3://a/2.avro",
},
{
"snapshot-id": 3,
"parent-snapshot-id": 2,
"timestamp-ms": 3000,
"sequence-number": 3,
"summary": {"operation": "append"},
"manifest-list": "s3://a/3.avro",
},
{
"snapshot-id": 4,
"parent-snapshot-id": 3,
"timestamp-ms": 4000,
"sequence-number": 4,
"summary": {"operation": "append"},
"manifest-list": "s3://a/4.avro",
},
],
}
)
result = latest_ancestor_before_timestamp(metadata, 3500)
assert result is not None
assert result.snapshot_id == 3
result = latest_ancestor_before_timestamp(metadata, 2500)
assert result is not None
assert result.snapshot_id == 2
result = latest_ancestor_before_timestamp(metadata, 5000)
assert result is not None
assert result.snapshot_id == 4
result = latest_ancestor_before_timestamp(metadata, 3000)
assert result is not None
assert result.snapshot_id == 2
result = latest_ancestor_before_timestamp(metadata, 1000)
assert result is None