water.hive.HiveMetaData 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 java.util.List;
import java.util.Map;
public interface HiveMetaData {
Table getTable(String name) throws Exception;
interface Storable {
Map getSerDeParams();
String getLocation();
String getSerializationLib();
String getInputFormat();
}
interface Table extends Storable {
String getName();
boolean hasPartitions();
List getPartitions();
List getColumns();
List getPartitionKeys();
}
interface Column {
String getName();
String getType();
}
interface Partition extends Storable {
List getValues();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy