Package org.apache.hadoop.hive.ql

Examples of org.apache.hadoop.hive.ql.HiveDriverRunHookContextImpl


  {
    List<HiveDriverRunHook> hooks =
        getHooks(hiveConf, HiveConf.ConfVars.HIVE_DRIVER_RUN_HOOKS,
            HiveDriverRunHook.class);
    HiveDriverRunHookContext context =
        new HiveDriverRunHookContextImpl(hiveConf, "no_cmd");
    for (HiveDriverRunHook hook : hooks) {
      LOG.info("runPreHooksThrows: Running hook " + hook + " of class " +
          hook.getClass());
      hook.preDriverRun(context);
    }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hive.ql.HiveDriverRunHookContextImpl

Copyright © 2018 www.massapicom. 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.