blob: 2907efdb2d207b1447d14a06a5a6c679f9135fd2 [file] [log] [blame]
/*
* 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.iotdb.hadoop.fileSystem;
import org.apache.iotdb.tsfile.common.conf.TSFileConfig;
import org.apache.iotdb.tsfile.common.conf.TSFileDescriptor;
import org.apache.iotdb.tsfile.common.constant.TsFileConstant;
import org.apache.iotdb.tsfile.fileSystem.FSType;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.security.UserGroupInformation;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;
class HDFSConfUtil {
private HDFSConfUtil() {}
private static TSFileConfig tsFileConfig = TSFileDescriptor.getInstance().getConfig();
private static final Logger logger = LoggerFactory.getLogger(HDFSConfUtil.class);
static Configuration setConf(Configuration conf) {
boolean enableHDFS = false;
for (FSType type : tsFileConfig.getTSFileStorageFs()) {
if (type.equals(FSType.HDFS)) {
enableHDFS = true;
break;
}
}
if (!enableHDFS) {
return conf;
}
try {
conf.addResource(new File(tsFileConfig.getCoreSitePath()).toURI().toURL());
conf.addResource(new File(tsFileConfig.getHdfsSitePath()).toURI().toURL());
} catch (MalformedURLException e) {
logger.error(
"Failed to add resource core-site.xml {} and hdfs-site.xml {}. ",
tsFileConfig.getCoreSitePath(),
tsFileConfig.getHdfsSitePath(),
e);
}
conf.set("fs.hdfs.impl", "org.apache.hadoop.hdfs.DistributedFileSystem");
conf.set("dfs.client.block.write.replace-datanode-on-failure.policy", "NEVER");
conf.set("dfs.client.block.write.replace-datanode-on-failure.enable", "true");
// HA configuration
String[] hdfsIps = tsFileConfig.getHdfsIp();
if (hdfsIps.length > 1) {
String dfsNameservices = tsFileConfig.getDfsNameServices();
String[] dfsHaNamenodes = tsFileConfig.getDfsHaNamenodes();
conf.set("dfs.nameservices", dfsNameservices);
conf.set("dfs.ha.namenodes." + dfsNameservices, String.join(",", dfsHaNamenodes));
for (int i = 0; i < dfsHaNamenodes.length; i++) {
conf.set(
"dfs.namenode.rpc-address."
+ dfsNameservices
+ TsFileConstant.PATH_SEPARATOR
+ dfsHaNamenodes[i].trim(),
hdfsIps[i] + ":" + tsFileConfig.getHdfsPort());
}
boolean dfsHaAutomaticFailoverEnabled = tsFileConfig.isDfsHaAutomaticFailoverEnabled();
conf.set("dfs.ha.automatic-failover.enabled", String.valueOf(dfsHaAutomaticFailoverEnabled));
if (dfsHaAutomaticFailoverEnabled) {
conf.set(
"dfs.client.failover.proxy.provider." + dfsNameservices,
tsFileConfig.getDfsClientFailoverProxyProvider());
}
}
// Kerberos configuration
if (tsFileConfig.isUseKerberos()) {
conf.set("hadoop.security.authorization", "true");
conf.set("hadoop.security.authentication", "kerberos");
conf.set("dfs.block.access.token.enable", "true");
UserGroupInformation.setConfiguration(conf);
try {
UserGroupInformation.loginUserFromKeytab(
tsFileConfig.getKerberosPrincipal(), tsFileConfig.getKerberosKeytabFilePath());
} catch (IOException e) {
logger.error(
"Failed to login user from key tab. User: {}, path:{}. ",
tsFileConfig.getKerberosPrincipal(),
tsFileConfig.getKerberosKeytabFilePath(),
e);
}
}
return conf;
}
}