Package co.cask.cdap.explore.service.hive

Source Code of co.cask.cdap.explore.service.hive.HiveCDH4ExploreService

/*
* Copyright © 2014 Cask Data, Inc.
*
* 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 co.cask.cdap.explore.service.hive;

import co.cask.cdap.common.conf.CConfiguration;
import co.cask.cdap.common.conf.Constants;
import co.cask.cdap.data2.dataset2.DatasetFramework;
import co.cask.cdap.explore.service.ExploreException;
import co.cask.cdap.explore.service.HandleNotFoundException;
import co.cask.cdap.proto.QueryHandle;
import co.cask.cdap.proto.QueryStatus;
import co.cask.tephra.TransactionSystemClient;
import com.google.common.base.Throwables;
import com.google.common.collect.ImmutableMap;
import com.google.inject.Inject;
import com.google.inject.name.Named;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hive.conf.HiveConf;
import org.apache.hive.service.cli.HiveSQLException;
import org.apache.hive.service.cli.OperationHandle;
import org.apache.hive.service.cli.OperationState;
import org.apache.hive.service.cli.SessionHandle;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.File;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.sql.SQLException;

/**
* Hive patched for CDH4 implementation of {@link co.cask.cdap.explore.service.ExploreService}.
* There are 3 changes compared to Hive 13 implementation -
* <ol>
*   <li>{@link org.apache.hive.service.cli.CLIService#getOperationStatus(org.apache.hive.service.cli.OperationHandle)}
*   return type has changed</li>
*   <li>{@link org.apache.hive.service.cli.CLIService#fetchResults(org.apache.hive.service.cli.OperationHandle)}
*   return type has changed</li>
*   <li>{@link org.apache.hive.service.cli.CLIService#executeStatementAsync(org.apache.hive.service.cli.SessionHandle,
*   String, java.util.Map)} does not exist, only {@link org.apache.hive.service.cli.CLIService
*   #executeStatement(org.apache.hive.service.cli.SessionHandle, String, java.util.Map)}</li>
* </ol>
*/
public class HiveCDH4ExploreService extends BaseHiveExploreService {
  private static final Logger LOG = LoggerFactory.getLogger(HiveCDH4ExploreService.class);

  @Inject
  protected HiveCDH4ExploreService(TransactionSystemClient txClient, DatasetFramework datasetFramework,
                                   CConfiguration cConf, Configuration hConf, HiveConf hiveConf,
                                   @Named(Constants.Explore.PREVIEWS_DIR_NAME) File previewsDir) {
    super(txClient, datasetFramework, cConf, hConf, hiveConf, previewsDir);
    System.setProperty("hive.server2.blocking.query", "false");
  }

  @Override
  protected QueryStatus fetchStatus(OperationHandle operationHandle)
    throws HiveSQLException, ExploreException, HandleNotFoundException {
    try {
      // In Hive patched for CDH4, CLIService.getOperationStatus returns OperationState.
      // In Hive 13, CLIService.getOperationStatus returns OperationStatus.
      // Since we currently compile using Hive 13, we need the following workaround to get
      // Hive patched for CDH4 working, so that the compiler does not make assumption
      // on the return type of fetchResults

      Class cliServiceClass = getCliService().getClass();
      Method m = cliServiceClass.getMethod("getOperationStatus", OperationHandle.class);
      OperationState operationState = (OperationState) m.invoke(getCliService(), operationHandle);
      return new QueryStatus(QueryStatus.OpStatus.valueOf(operationState.toString()), operationHandle.hasResultSet());
    } catch (InvocationTargetException e) {
      throw Throwables.propagate(e);
    } catch (NoSuchMethodException e) {
      throw  Throwables.propagate(e);
    } catch (IllegalAccessException e) {
      throw Throwables.propagate(e);
    }
  }

  @Override
  protected OperationHandle doExecute(SessionHandle sessionHandle, String statement)
    throws HiveSQLException, ExploreException {
    return getCliService().executeStatement(sessionHandle, statement, ImmutableMap.<String, String>of());
  }

  @Override
  void cancelInternal(QueryHandle handle) throws ExploreException, HandleNotFoundException, SQLException {
    LOG.warn("Trying to cancel operation with handle {}", handle);
    throw new UnsupportedOperationException("Cancel operation is not supported with CDH4.");
  }
}
TOP

Related Classes of co.cask.cdap.explore.service.hive.HiveCDH4ExploreService

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.