This is an automated email from the ASF dual-hosted git repository.
csringhofer pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
from d217b9ecc IMPALA-14450: Simplify Java version selection
new b0f1d4904 IMPALA-14016: Add multi-catalog support for local catalog
mode
new 0e3079202 IMPALA-14444: Upgrade bouncycastle to 1.79
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:
bin/impala-config.sh | 2 +-
.../impala/authorization/AuthorizationFactory.java | 2 +-
.../authorization/NoopAuthorizationFactory.java | 2 +-
.../ranger/RangerAuthorizationFactory.java | 2 +-
.../org/apache/impala/catalog/FeCatalogUtils.java | 4 +
.../impala/catalog/iceberg/IcebergRESTCatalog.java | 11 +-
.../impala/catalog/local/IcebergMetaProvider.java | 6 +-
.../impala/catalog/local/MultiMetaProvider.java | 328 +++++++++++++++++++++
.../apache/impala/service/FeCatalogManager.java | 269 -----------------
.../java/org/apache/impala/service/Frontend.java | 3 +-
.../service/catalogmanager/CatalogdImpl.java | 71 +++++
.../service/catalogmanager/ConfigLoader.java | 88 ++++++
.../service/catalogmanager/FeCatalogManager.java | 89 ++++++
.../impala/service/catalogmanager/LocalImpl.java | 117 ++++++++
.../catalogmanager/TestImpl.java} | 32 +-
.../org/apache/impala/common/FrontendTestBase.java | 2 +-
.../service/catalogmanager/ConfigLoaderTest.java | 127 ++++++++
java/iceberg-rest-catalog-test/pom.xml | 6 +
.../iceberg/rest/IcebergRestCatalogTest.java | 155 +++++++---
testdata/bin/run-iceberg-rest-server.sh | 2 +-
.../rest-1.properties} | 0
.../rest-2.properties} | 2 +-
.../functional/functional_schema_template.sql | 14 +
.../datasets/functional/schema_constraints.csv | 1 +
.../queries/QueryTest/iceberg-multicatalog.test | 45 +++
...berg-multiple-rest-catalogs-ambiguous-name.test | 6 +
.../QueryTest/iceberg-multiple-rest-catalogs.test | 40 +++
tests/common/iceberg_rest_server.py | 50 +++-
tests/custom_cluster/test_iceberg_rest_catalog.py | 152 ++++++++--
29 files changed, 1235 insertions(+), 393 deletions(-)
create mode 100644
fe/src/main/java/org/apache/impala/catalog/local/MultiMetaProvider.java
delete mode 100644
fe/src/main/java/org/apache/impala/service/FeCatalogManager.java
create mode 100644
fe/src/main/java/org/apache/impala/service/catalogmanager/CatalogdImpl.java
create mode 100644
fe/src/main/java/org/apache/impala/service/catalogmanager/ConfigLoader.java
create mode 100644
fe/src/main/java/org/apache/impala/service/catalogmanager/FeCatalogManager.java
create mode 100644
fe/src/main/java/org/apache/impala/service/catalogmanager/LocalImpl.java
copy
fe/src/main/java/org/apache/impala/{catalog/metastore/NoOpCatalogMetastoreServer.java
=> service/catalogmanager/TestImpl.java} (53%)
create mode 100644
fe/src/test/java/org/apache/impala/service/catalogmanager/ConfigLoaderTest.java
copy testdata/configs/catalog_configs/{iceberg_rest_config/rest.properties =>
multicatalog_rest_config/rest-1.properties} (100%)
copy testdata/configs/catalog_configs/{iceberg_rest_config/rest.properties =>
multicatalog_rest_config/rest-2.properties} (94%)
create mode 100644
testdata/workloads/functional-query/queries/QueryTest/iceberg-multicatalog.test
create mode 100644
testdata/workloads/functional-query/queries/QueryTest/iceberg-multiple-rest-catalogs-ambiguous-name.test
create mode 100644
testdata/workloads/functional-query/queries/QueryTest/iceberg-multiple-rest-catalogs.test