IcebergHMSMetaStoreProperties.java
// 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.
package org.apache.doris.datasource.property.metastore;
import org.apache.doris.common.security.authentication.HadoopExecutionAuthenticator;
import org.apache.doris.datasource.iceberg.IcebergExternalCatalog;
import org.apache.doris.datasource.property.ConnectorProperty;
import org.apache.doris.datasource.property.storage.StorageProperties;
import org.apache.commons.lang3.exception.ExceptionUtils;
import org.apache.hadoop.conf.Configuration;
import org.apache.iceberg.catalog.Catalog;
import org.apache.iceberg.hive.HiveCatalog;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* @See org.apache.iceberg.hive.HiveCatalog
*/
public class IcebergHMSMetaStoreProperties extends AbstractIcebergProperties {
public IcebergHMSMetaStoreProperties(Map<String, String> props) {
super(props);
}
@ConnectorProperty(
names = {HiveCatalog.LIST_ALL_TABLES},
required = false,
description = "Whether to list all tables in the catalog. If true, the catalog will list all tables in the "
+ "catalog, otherwise it will only list the tables that are registered in the catalog.")
private boolean listAllTables = true;
private HMSBaseProperties hmsBaseProperties;
@Override
public String getIcebergCatalogType() {
return IcebergExternalCatalog.ICEBERG_HMS;
}
@Override
public void initNormalizeAndCheckProps() {
super.initNormalizeAndCheckProps();
hmsBaseProperties = HMSBaseProperties.of(origProps);
this.executionAuthenticator = new HadoopExecutionAuthenticator(hmsBaseProperties.getHmsAuthenticator());
}
@Override
public Catalog initCatalog(String catalogName, Map<String, String> catalogProps,
List<StorageProperties> storagePropertiesList) {
checkInitialized();
Configuration conf = buildHiveConfiguration(storagePropertiesList);
HiveCatalog hiveCatalog = new HiveCatalog();
hiveCatalog.setConf(conf);
storagePropertiesList.forEach(sp -> {
for (Map.Entry<String, String> entry : sp.getHadoopStorageConfig()) {
catalogProps.put(entry.getKey(), entry.getValue());
}
// NOTE: Custom FileIO implementation (KerberizedHadoopFileIO) is commented out by default.
// Using FileIO for Kerberos authentication may cause serialization issues when accessing
// Iceberg system tables (e.g., history, snapshots, manifests).
/*if (sp instanceof HdfsProperties) {
HdfsProperties hdfsProps = (HdfsProperties) sp;
if (hdfsProps.isKerberos()) {
catalogProps.put(CatalogProperties.FILE_IO_IMPL,
"org.apache.doris.datasource.iceberg.fileio.DelegateFileIO");
}
}*/
});
buildCatalogProperties(catalogProps);
try {
this.executionAuthenticator.execute(() -> hiveCatalog.initialize(catalogName, catalogProps));
return hiveCatalog;
} catch (Exception e) {
throw new RuntimeException("Failed to initialize HiveCatalog for Iceberg. "
+ "CatalogName=" + catalogName + ", msg :" + ExceptionUtils.getRootCauseMessage(e), e);
}
}
/**
* Builds the Hadoop Configuration by adding hive-site.xml and storage-specific configs.
*/
private Configuration buildHiveConfiguration(List<StorageProperties> storagePropertiesList) {
Configuration conf = new Configuration();
conf.addResource(hmsBaseProperties.getHiveConf());
for (StorageProperties sp : storagePropertiesList) {
if (sp.getHadoopStorageConfig() != null) {
conf.addResource(sp.getHadoopStorageConfig());
}
}
return conf;
}
/**
* Constructs HiveCatalog's property map.
*/
private void buildCatalogProperties(Map<String, String> catalogProps) {
Map<String, String> props = new HashMap<>();
catalogProps.put(HiveCatalog.LIST_ALL_TABLES, String.valueOf(listAllTables));
props.put("uri", hmsBaseProperties.getHiveMetastoreUri());
}
private void checkInitialized() {
if (hmsBaseProperties == null) {
throw new IllegalStateException("HMS properties not initialized."
+ " You must call initNormalizeAndCheckProps() first.");
}
}
}