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 lombok.Getter;
import org.apache.commons.lang3.exception.ExceptionUtils;
import org.apache.hadoop.conf.Configuration;
import org.apache.iceberg.CatalogProperties;
import org.apache.iceberg.CatalogUtil;
import org.apache.iceberg.catalog.Catalog;
import org.apache.iceberg.hive.HiveCatalog;
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;
@Getter
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) {
try {
catalogProps.put(CatalogProperties.CATALOG_IMPL, CatalogUtil.ICEBERG_CATALOG_HIVE);
Configuration conf = buildHiveConfiguration(storagePropertiesList);
return this.executionAuthenticator.execute(() ->
buildIcebergCatalog(catalogName, catalogProps, conf));
} 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;
}
}