forked from apache/iceberg-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_upsert.py
More file actions
368 lines (274 loc) · 11.5 KB
/
test_upsert.py
File metadata and controls
368 lines (274 loc) · 11.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
# 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.
from pathlib import PosixPath
import pyarrow as pa
import pytest
from datafusion import SessionContext
from pyarrow import Table as pa_table
from pyiceberg.catalog import Catalog
from pyiceberg.exceptions import NoSuchTableError
from pyiceberg.schema import Schema
from pyiceberg.table import UpsertResult
from pyiceberg.types import IntegerType, NestedField, StringType
from tests.catalog.test_base import InMemoryCatalog, Table
@pytest.fixture
def catalog(tmp_path: PosixPath) -> InMemoryCatalog:
catalog = InMemoryCatalog("test.in_memory.catalog", warehouse=tmp_path.absolute().as_posix())
catalog.create_namespace("default")
return catalog
def _drop_table(catalog: Catalog, identifier: str) -> None:
try:
catalog.drop_table(identifier)
except NoSuchTableError:
pass
def show_iceberg_table(table: Table, ctx: SessionContext) -> None:
import pyarrow.dataset as ds
table_name = "target"
if ctx.table_exist(table_name):
ctx.deregister_table(table_name)
ctx.register_dataset(table_name, ds.dataset(table.scan().to_arrow()))
ctx.sql(f"SELECT * FROM {table_name} limit 5").show()
def show_df(df: pa_table, ctx: SessionContext) -> None:
import pyarrow.dataset as ds
ctx.register_dataset("df", ds.dataset(df))
ctx.sql("select * from df limit 10").show()
def gen_source_dataset(start_row: int, end_row: int, composite_key: bool, add_dup: bool, ctx: SessionContext) -> pa_table:
additional_columns = ", t.order_id + 1000 as order_line_id" if composite_key else ""
dup_row = (
f"""
UNION ALL
(
SELECT t.order_id {additional_columns}
, date '2021-01-01' as order_date, 'B' as order_type
from t
limit 1
)
"""
if add_dup
else ""
)
sql = f"""
with t as (SELECT unnest(range({start_row},{end_row+1})) as order_id)
SELECT t.order_id {additional_columns}
, date '2021-01-01' as order_date, 'B' as order_type
from t
{dup_row}
"""
df = ctx.sql(sql).to_arrow_table()
return df
def gen_target_iceberg_table(
start_row: int, end_row: int, composite_key: bool, ctx: SessionContext, catalog: InMemoryCatalog, identifier: str
) -> Table:
additional_columns = ", t.order_id + 1000 as order_line_id" if composite_key else ""
df = ctx.sql(f"""
with t as (SELECT unnest(range({start_row},{end_row+1})) as order_id)
SELECT t.order_id {additional_columns}
, date '2021-01-01' as order_date, 'A' as order_type
from t
""").to_arrow_table()
table = catalog.create_table(identifier, df.schema)
table.append(df)
return table
def assert_upsert_result(res: UpsertResult, expected_updated: int, expected_inserted: int) -> None:
assert res.rows_updated == expected_updated, f"rows updated should be {expected_updated}, but got {res.rows_updated}"
assert res.rows_inserted == expected_inserted, f"rows inserted should be {expected_inserted}, but got {res.rows_inserted}"
@pytest.mark.parametrize(
"join_cols, src_start_row, src_end_row, target_start_row, target_end_row, when_matched_update_all, when_not_matched_insert_all, expected_updated, expected_inserted",
[
(["order_id"], 1, 2, 2, 3, True, True, 1, 1), # single row
(["order_id"], 5001, 15000, 1, 10000, True, True, 5000, 5000), # 10k rows
(["order_id"], 501, 1500, 1, 1000, True, False, 500, 0), # update only
(["order_id"], 501, 1500, 1, 1000, False, True, 0, 500), # insert only
],
)
def test_merge_rows(
catalog: Catalog,
join_cols: list[str],
src_start_row: int,
src_end_row: int,
target_start_row: int,
target_end_row: int,
when_matched_update_all: bool,
when_not_matched_insert_all: bool,
expected_updated: int,
expected_inserted: int,
) -> None:
identifier = "default.test_merge_rows"
_drop_table(catalog, identifier)
ctx = SessionContext()
source_df = gen_source_dataset(src_start_row, src_end_row, False, False, ctx)
ice_table = gen_target_iceberg_table(target_start_row, target_end_row, False, ctx, catalog, identifier)
res = ice_table.upsert(
df=source_df,
join_cols=join_cols,
when_matched_update_all=when_matched_update_all,
when_not_matched_insert_all=when_not_matched_insert_all,
)
assert_upsert_result(res, expected_updated, expected_inserted)
def test_merge_scenario_skip_upd_row(catalog: Catalog) -> None:
"""
tests a single insert and update; skips a row that does not need to be updated
"""
identifier = "default.test_merge_scenario_skip_upd_row"
_drop_table(catalog, identifier)
ctx = SessionContext()
df = ctx.sql("""
select 1 as order_id, date '2021-01-01' as order_date, 'A' as order_type
union all
select 2 as order_id, date '2021-01-01' as order_date, 'A' as order_type
""").to_arrow_table()
table = catalog.create_table(identifier, df.schema)
table.append(df)
source_df = ctx.sql("""
select 1 as order_id, date '2021-01-01' as order_date, 'A' as order_type
union all
select 2 as order_id, date '2021-01-01' as order_date, 'B' as order_type
union all
select 3 as order_id, date '2021-01-01' as order_date, 'A' as order_type
""").to_arrow_table()
res = table.upsert(df=source_df, join_cols=["order_id"])
expected_updated = 1
expected_inserted = 1
assert_upsert_result(res, expected_updated, expected_inserted)
def test_merge_scenario_date_as_key(catalog: Catalog) -> None:
"""
tests a single insert and update; primary key is a date column
"""
ctx = SessionContext()
identifier = "default.test_merge_scenario_date_as_key"
_drop_table(catalog, identifier)
df = ctx.sql("""
select date '2021-01-01' as order_date, 'A' as order_type
union all
select date '2021-01-02' as order_date, 'A' as order_type
""").to_arrow_table()
table = catalog.create_table(identifier, df.schema)
table.append(df)
source_df = ctx.sql("""
select date '2021-01-01' as order_date, 'A' as order_type
union all
select date '2021-01-02' as order_date, 'B' as order_type
union all
select date '2021-01-03' as order_date, 'A' as order_type
""").to_arrow_table()
res = table.upsert(df=source_df, join_cols=["order_date"])
expected_updated = 1
expected_inserted = 1
assert_upsert_result(res, expected_updated, expected_inserted)
def test_merge_scenario_string_as_key(catalog: Catalog) -> None:
"""
tests a single insert and update; primary key is a string column
"""
identifier = "default.test_merge_scenario_string_as_key"
_drop_table(catalog, identifier)
ctx = SessionContext()
df = ctx.sql("""
select 'abc' as order_id, 'A' as order_type
union all
select 'def' as order_id, 'A' as order_type
""").to_arrow_table()
table = catalog.create_table(identifier, df.schema)
table.append(df)
source_df = ctx.sql("""
select 'abc' as order_id, 'A' as order_type
union all
select 'def' as order_id, 'B' as order_type
union all
select 'ghi' as order_id, 'A' as order_type
""").to_arrow_table()
res = table.upsert(df=source_df, join_cols=["order_id"])
expected_updated = 1
expected_inserted = 1
assert_upsert_result(res, expected_updated, expected_inserted)
def test_merge_scenario_composite_key(catalog: Catalog) -> None:
"""
tests merging 200 rows with a composite key
"""
identifier = "default.test_merge_scenario_composite_key"
_drop_table(catalog, identifier)
ctx = SessionContext()
table = gen_target_iceberg_table(1, 200, True, ctx, catalog, identifier)
source_df = gen_source_dataset(101, 300, True, False, ctx)
res = table.upsert(df=source_df, join_cols=["order_id", "order_line_id"])
expected_updated = 100
expected_inserted = 100
assert_upsert_result(res, expected_updated, expected_inserted)
def test_merge_source_dups(catalog: Catalog) -> None:
"""
tests duplicate rows in source
"""
identifier = "default.test_merge_source_dups"
_drop_table(catalog, identifier)
ctx = SessionContext()
table = gen_target_iceberg_table(1, 10, False, ctx, catalog, identifier)
source_df = gen_source_dataset(5, 15, False, True, ctx)
with pytest.raises(Exception, match="Duplicate rows found in source dataset based on the key columns. No upsert executed"):
table.upsert(df=source_df, join_cols=["order_id"])
def test_key_cols_misaligned(catalog: Catalog) -> None:
"""
tests join columns missing from one of the tables
"""
identifier = "default.test_key_cols_misaligned"
_drop_table(catalog, identifier)
ctx = SessionContext()
df = ctx.sql("select 1 as order_id, date '2021-01-01' as order_date, 'A' as order_type").to_arrow_table()
table = catalog.create_table(identifier, df.schema)
table.append(df)
df_src = ctx.sql("select 1 as item_id, date '2021-05-01' as order_date, 'B' as order_type").to_arrow_table()
with pytest.raises(Exception, match=r"""Field ".*" does not exist in schema"""):
table.upsert(df=df_src, join_cols=["order_id"])
def test_upsert_with_identifier_fields(catalog: Catalog) -> None:
identifier = "default.test_upsert_with_identifier_fields"
_drop_table(catalog, identifier)
schema = Schema(
NestedField(1, "city", StringType(), required=True),
NestedField(2, "inhabitants", IntegerType(), required=True),
# Mark City as the identifier field, also known as the primary-key
identifier_field_ids=[1],
)
tbl = catalog.create_table(identifier, schema=schema)
arrow_schema = pa.schema(
[
pa.field("city", pa.string(), nullable=False),
pa.field("inhabitants", pa.int32(), nullable=False),
]
)
# Write some data
df = pa.Table.from_pylist(
[
{"city": "Amsterdam", "inhabitants": 921402},
{"city": "San Francisco", "inhabitants": 808988},
{"city": "Drachten", "inhabitants": 45019},
{"city": "Paris", "inhabitants": 2103000},
],
schema=arrow_schema,
)
tbl.append(df)
df = pa.Table.from_pylist(
[
# Will be updated, the inhabitants has been updated
{"city": "Drachten", "inhabitants": 45505},
# New row, will be inserted
{"city": "Berlin", "inhabitants": 3432000},
# Ignored, already exists in the table
{"city": "Paris", "inhabitants": 2103000},
],
schema=arrow_schema,
)
upd = tbl.upsert(df)
assert upd.rows_updated == 1
assert upd.rows_inserted == 1