/* * * Licensed 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.hive.storage.jdbc; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hive.metastore.HiveMetaHook; import org.apache.hadoop.hive.ql.metadata.HiveException; import org.apache.hadoop.hive.ql.metadata.HiveStorageHandler; import org.apache.hadoop.hive.ql.plan.TableDesc; import org.apache.hadoop.hive.ql.security.authorization.HiveAuthorizationProvider; import org.apache.hadoop.hive.serde2.AbstractSerDe; import org.apache.hadoop.mapred.InputFormat; import org.apache.hadoop.mapred.JobConf; import org.apache.hadoop.mapred.OutputFormat; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.apache.hive.storage.jdbc.conf.JdbcStorageConfigManager; import java.lang.IllegalArgumentException; import java.util.Map; import java.util.Properties; public class JdbcStorageHandler implements HiveStorageHandler { private static final Logger LOGGER = LoggerFactory.getLogger(JdbcStorageHandler.class); private Configuration conf; @Override public void setConf(Configuration conf) { this.conf = conf; } @Override public Configuration getConf() { return this.conf; } @SuppressWarnings("rawtypes") @Override public Class<? extends InputFormat> getInputFormatClass() { return JdbcInputFormat.class; } @SuppressWarnings("rawtypes") @Override public Class<? extends OutputFormat> getOutputFormatClass() { return JdbcOutputFormat.class; } @Override public Class<? extends AbstractSerDe> getSerDeClass() { return JdbcSerDe.class; } @Override public HiveMetaHook getMetaHook() { return null; } @Override public void configureInputJobProperties(TableDesc tableDesc, Map<String, String> jobProperties) { try { LOGGER.debug("Adding properties to input job conf"); Properties properties = tableDesc.getProperties(); JdbcStorageConfigManager.copyConfigurationToJob(properties, jobProperties); } catch (Exception e) { throw new IllegalArgumentException(e); } } @Override public void configureInputJobCredentials(TableDesc tableDesc, Map<String, String> jobSecrets) { try { LOGGER.debug("Adding secrets to input job conf"); Properties properties = tableDesc.getProperties(); JdbcStorageConfigManager.copySecretsToJob(properties, jobSecrets); } catch (Exception e) { throw new IllegalArgumentException(e); } } @Override public void configureTableJobProperties(TableDesc tableDesc, Map<String, String> jobProperties) { try { LOGGER.debug("Adding properties to input job conf"); Properties properties = tableDesc.getProperties(); JdbcStorageConfigManager.copyConfigurationToJob(properties, jobProperties); } catch (Exception e) { throw new IllegalArgumentException(e); } } @Override public void configureOutputJobProperties(TableDesc tableDesc, Map<String, String> jobProperties) { // Nothing to do here... } @Override public HiveAuthorizationProvider getAuthorizationProvider() throws HiveException { return null; } @Override public void configureJobConf(TableDesc tableDesc, JobConf jobConf) { } }