This is an automated email from the ASF dual-hosted git repository.
boroknagyz pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
from 784971c01 IMPALA-12851: Fix AllocWriteIdEvent process issue to add
txnId-tableWriteIds mapping
new ff5cbadec IMPALA-12864: Deflake test_query_log_size_in_bytes.
new 4428db37b IMPALA-12860: Invoke validateDataFilesExist for RowDelta
operations
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
be/src/exec/CMakeLists.txt | 1 -
be/src/exec/iceberg-buffered-delete-sink.cc | 18 ++
be/src/exec/iceberg-buffered-delete-sink.h | 3 +
be/src/exec/iceberg-delete-sink-config.cc | 12 +-
be/src/exec/iceberg-delete-sink.cc | 245 ---------------------
be/src/exec/iceberg-delete-sink.h | 93 --------
be/src/exec/multi-table-sink.cc | 3 +-
be/src/runtime/dml-exec-state.cc | 7 +
be/src/runtime/dml-exec-state.h | 21 ++
be/src/service/CMakeLists.txt | 2 +-
be/src/service/client-request-state.cc | 4 +
be/src/service/impala-server.cc | 9 +-
be/src/service/impala-server.h | 6 +-
be/src/service/query-state-record-test.cc | 6 +-
be/src/service/query-state-record.h | 2 +-
be/src/util/impalad-metrics.cc | 5 +
be/src/util/impalad-metrics.h | 5 +
bin/run_clang_tidy.sh | 4 +-
common/protobuf/control_service.proto | 4 +
common/thrift/CatalogService.thrift | 3 +
common/thrift/DataSinks.thrift | 4 +-
common/thrift/metrics.json | 10 +
.../apache/impala/analysis/IcebergDeleteImpl.java | 5 +-
.../impala/planner/IcebergBufferedDeleteSink.java | 1 -
.../apache/impala/planner/IcebergDeleteSink.java | 145 ------------
.../java/org/apache/impala/planner/TableSink.java | 5 +-
.../impala/service/IcebergCatalogOpExecutor.java | 8 +-
.../queries/PlannerTest/iceberg-v2-delete.test | 88 +++-----
tests/custom_cluster/test_web_pages.py | 35 +--
tests/stress/test_update_stress.py | 73 ++++--
30 files changed, 218 insertions(+), 609 deletions(-)
delete mode 100644 be/src/exec/iceberg-delete-sink.cc
delete mode 100644 be/src/exec/iceberg-delete-sink.h
delete mode 100644
fe/src/main/java/org/apache/impala/planner/IcebergDeleteSink.java