Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2015. Qubole 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 com.qubole.quark.plugins.jdbc;
import org.apache.calcite.linq4j.tree.Primitive;
import org.apache.calcite.sql.SqlDialect;
import com.google.common.collect.ImmutableMap;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Types;
import java.util.Map;
/**
* Support Apache Hive database as a {@link com.qubole.quark.plugin.DataSource}
*/
public class HiveDb extends JdbcDB {
/* Union can distort the ordering of individual select even if they have order by constraint
* So adding union_sort to have column names always before partitions
* And sorting each of them using their index for every Table in a particular JdbcDB.
*/
private final String catalogSql = "SELECT nm, tbl, cn, tn FROM "
+ "((SELECT d.name as nm, t.tbl_name as tbl, c.column_name as cn, "
+ "c.type_name as tn, c.integer_idx as idx, "
+ "1 as union_sort FROM DBS d INNER JOIN TBLS t ON t.db_id = d.db_ID "
+ "INNER JOIN SDS s ON s.SD_ID = t.SD_ID "
+ "INNER JOIN COLUMNS_V2 c ON c.CD_ID = s.CD_ID) "
+ "UNION "
+ "(SELECT d.name as nm, t.tbl_name as tbl, k.pkey_name as cn, "
+ "k.pkey_type as tn, k.integer_idx as idx, "
+ "2 as union_sort FROM DBS d INNER JOIN TBLS t ON t.db_id = d.db_ID "
+ "INNER JOIN PARTITION_KEYS k ON (t.TBL_ID=k.TBL_ID))) res "
+ "ORDER BY nm, tbl, union_sort, idx asc;";
private final String defaultSchema = "DEFAULT";
private final String productName = "HIVE";
protected static final ImmutableMap DATA_TYPES =
new ImmutableMap.Builder()
.put("STRING", Types.VARCHAR)
.put("CHARACTER VARYING", Types.VARCHAR)
.put("CHARACTER", Types.CHAR)
.put("INTEGER", Types.INTEGER)
.put("SMALLINT", Types.SMALLINT)
.put("BIGINT", Types.BIGINT)
.put("TINYINT", Types.TINYINT)
.put(Primitive.BYTE.primitiveClass.getSimpleName(), Types.TINYINT)
.put(Primitive.CHAR.primitiveClass.getSimpleName(), Types.TINYINT)
.put(Primitive.SHORT.primitiveClass.getSimpleName(), Types.SMALLINT)
.put(Primitive.INT.primitiveClass.getSimpleName(), Types.INTEGER)
.put(Primitive.LONG.primitiveClass.getSimpleName(), Types.BIGINT)
.put(Primitive.FLOAT.primitiveClass.getSimpleName(), Types.FLOAT)
.put(Primitive.DOUBLE.primitiveClass.getSimpleName(), Types.DOUBLE)
.put("DATE", Types.DATE)
.put("TIME", Types.TIME)
.put("TIMESTAMP", Types.TIMESTAMP)
.put("CHARACTER VARYING\\([0-9]+\\)", Types.VARCHAR)
.put("VARCHAR\\([0-9]+\\)", Types.VARCHAR)
.put("CHAR\\([0-9]+\\)", Types.CHAR)
.put("CHARACTER\\([0-9]+\\)", Types.CHAR)
.put("DECIMAL\\([0-9]+,[0-9]+\\)", Types.DOUBLE).build();
public HiveDb(Map properties) {
super(properties);
}
public Connection getConnection() throws ClassNotFoundException, SQLException {
return DriverManager.getConnection(url, user, password);
}
@Override
protected ImmutableMap getTypes(Connection connection) {
return DATA_TYPES;
}
@Override
public String getCatalogSql() {
return catalogSql;
}
@Override
public String getDefaultSchema() {
return defaultSchema;
}
@Override
public String getProductName() {
return productName;
}
@Override
public SqlDialect getSqlDialect() {
final SqlDialect hiveDialect =
SqlDialect.getProduct("Hive", null).getDialect();
hiveDialect.setUseLimitKeyWord(true);
return hiveDialect;
}
}