water.hive.HiveComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of h2o-hive Show documentation
Show all versions of h2o-hive Show documentation
H2O Generic MapReduce Driver for Hadoop
The newest version!
package water.hive;
import org.apache.hadoop.conf.Configuration;
import water.H2O;
import water.init.StandaloneKerberosComponent;
public class HiveComponent implements StandaloneKerberosComponent {
@Override
public String name() {
return "SecuredHive";
}
@Override
public int priority() {
return 1000;
}
@Override
public boolean initComponent(Object conf, H2O.OptArgs args) {
return DelegationTokenRefresher.startRefresher((Configuration) conf, args);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy