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 99fc96ade IMPALA-13885: (addendum) Add Missing Double Quotes to Log
Messages
new bd3486c05 IMPALA-13586: Initial support for Iceberg REST Catalogs
new b9c074d28 IMPALA-13926: Remove teardown in
TestWorkloadManagementInitNoWait
new 49aaaa2cd IMPALA-13927: Fix crash on invalid BINARY data in TEXT tables
The 3 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/common/global-flags.cc | 3 +
be/src/exec/text-converter.inline.h | 15 +-
be/src/service/frontend.cc | 5 +
be/src/service/frontend.h | 4 +
be/src/service/impala-http-handler.cc | 18 +
be/src/service/impala-server.cc | 19 +-
be/src/util/backend-gflag-util.cc | 4 +
bin/rat_exclude_files.txt | 1 +
bin/start-impala-cluster.py | 10 +-
common/thrift/BackendGflags.thrift | 4 +
common/thrift/Frontend.thrift | 5 +
.../org/apache/impala/catalog/FeIcebergTable.java | 4 +-
.../impala/catalog/IcebergContentFileStore.java | 2 +-
.../catalog/iceberg/GroupedContentFiles.java | 2 +-
.../impala/catalog/iceberg/IcebergRESTCatalog.java | 161 ++++++
.../impala/catalog/local/CatalogdMetaProvider.java | 4 +
.../impala/catalog/local/DirectMetaProvider.java | 4 +
.../impala/catalog/local/IcebergMetaProvider.java | 600 +++++++++++++++++++++
.../apache/impala/catalog/local/LocalCatalog.java | 4 +
.../apache/impala/catalog/local/MetaProvider.java | 1 +
.../apache/impala/service/FeCatalogManager.java | 95 +++-
.../java/org/apache/impala/service/Frontend.java | 32 +-
.../org/apache/impala/service/JniFrontend.java | 20 +-
.../java/org/apache/impala/util/IcebergUtil.java | 10 +-
.../pom.xml | 54 +-
.../iceberg/rest/IcebergRestCatalogTest.java | 136 +++++
java/pom.xml | 1 +
testdata/bin/minicluster_trino/Dockerfile | 2 +-
...{iceberg.properties => iceberg_rest.properties} | 5 +-
.../bin/run-iceberg-rest-server.sh | 9 +-
.../iceberg_rest_config/rest.properties | 8 +-
testdata/data/README | 3 +
testdata/data/invalid_binary_data.txt | 2 +
.../queries/QueryTest/iceberg-rest-catalog.test | 90 ++++
.../queries/QueryTest/invalid-binary-type.test | 53 ++
tests/common/custom_cluster_test_suite.py | 2 +
tests/common/impala_cluster.py | 8 +-
tests/custom_cluster/test_iceberg_rest_catalog.py | 90 ++++
tests/custom_cluster/test_workload_mgmt_init.py | 6 +-
tests/data_errors/test_data_errors.py | 27 +
www/catalog.tmpl | 18 +
41 files changed, 1471 insertions(+), 70 deletions(-)
create mode 100644
fe/src/main/java/org/apache/impala/catalog/iceberg/IcebergRESTCatalog.java
create mode 100644
fe/src/main/java/org/apache/impala/catalog/local/IcebergMetaProvider.java
copy java/{datagenerator => iceberg-rest-catalog-test}/pom.xml (74%)
create mode 100644
java/iceberg-rest-catalog-test/src/main/java/org/apache/iceberg/rest/IcebergRestCatalogTest.java
copy testdata/bin/minicluster_trino/{iceberg.properties =>
iceberg_rest.properties} (83%)
copy bin/cmake_aux/add_override.sh => testdata/bin/run-iceberg-rest-server.sh
(72%)
copy bin/impala-gcovr =>
testdata/configs/catalog_configs/iceberg_rest_config/rest.properties (89%)
mode change 100755 => 100644
create mode 100644 testdata/data/invalid_binary_data.txt
create mode 100644
testdata/workloads/functional-query/queries/QueryTest/iceberg-rest-catalog.test
create mode 100644
testdata/workloads/functional-query/queries/QueryTest/invalid-binary-type.test
create mode 100644 tests/custom_cluster/test_iceberg_rest_catalog.py