All Projects → myui → HiveJdbcStorageHandler

myui / HiveJdbcStorageHandler

Licence: Apache-2.0 license
No description or website provided.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to HiveJdbcStorageHandler

Drill
Apache Drill is a distributed MPP query layer for self describing data
Stars: ✭ 1,619 (+7609.52%)
Mutual labels:  hive, jdbc
hive-jdbc-driver
An alternative to the "hive standalone" jar for connecting Java applications to Apache Hive via JDBC
Stars: ✭ 31 (+47.62%)
Mutual labels:  hive, jdbc
Kyuubi
Kyuubi is a unified multi-tenant JDBC interface for large-scale data processing and analytics, built on top of Apache Spark
Stars: ✭ 363 (+1628.57%)
Mutual labels:  hive, jdbc
incubator-linkis
Linkis helps easily connect to various back-end computation/storage engines(Spark, Python, TiDB...), exposes various interfaces(REST, JDBC, Java ...), with multi-tenancy, high performance, and resource control.
Stars: ✭ 2,459 (+11609.52%)
Mutual labels:  hive, jdbc
Trino
Official repository of Trino, the distributed SQL query engine for big data, formerly known as PrestoSQL (https://trino.io)
Stars: ✭ 4,581 (+21714.29%)
Mutual labels:  hive, jdbc
Linkis
Linkis helps easily connect to various back-end computation/storage engines(Spark, Python, TiDB...), exposes various interfaces(REST, JDBC, Java ...), with multi-tenancy, high performance, and resource control.
Stars: ✭ 2,323 (+10961.9%)
Mutual labels:  hive, jdbc
Hive Jdbc Uber Jar
Hive JDBC "uber" or "standalone" jar based on the latest Apache Hive version
Stars: ✭ 188 (+795.24%)
Mutual labels:  hive, jdbc
DBISProject
Library Management System using Java and MySQL
Stars: ✭ 27 (+28.57%)
Mutual labels:  jdbc
hadoop-etl-udfs
The Hadoop ETL UDFs are the main way to load data from Hadoop into EXASOL
Stars: ✭ 17 (-19.05%)
Mutual labels:  hive
spwrap
Simple Stored Procedure call wrapper with no framework dependencies.
Stars: ✭ 24 (+14.29%)
Mutual labels:  jdbc
Neo
Orm框架:基于ActiveRecord思想开发的至简化的java的Orm框架
Stars: ✭ 35 (+66.67%)
Mutual labels:  jdbc
hive-cube
Data self exporting and monitoring platform based on Hive data warehouse. https://hc.smartloli.org
Stars: ✭ 34 (+61.9%)
Mutual labels:  hive
databricks-dbapi
DBAPI and SQLAlchemy dialect for Databricks Workspace and SQL Analytics clusters
Stars: ✭ 21 (+0%)
Mutual labels:  hive
xxhadoop
Data Analysis Using Hadoop/Spark/Storm/ElasticSearch/MachineLearning etc. This is My Daily Notes/Code/Demo. Don't fork, Just star !
Stars: ✭ 37 (+76.19%)
Mutual labels:  hive
liquibase-impala
Liquibase extension to add Impala Database support
Stars: ✭ 23 (+9.52%)
Mutual labels:  hive
hiveql-parser
HiveQL Parser. Parse HiveQL code and print AST in JSON format if success, else print well formed syntax error message.
Stars: ✭ 25 (+19.05%)
Mutual labels:  hive
dogETL
A lib to transform data from jdbc,csv,json to ecah other.
Stars: ✭ 15 (-28.57%)
Mutual labels:  jdbc
common-datax
基于DataX的通用数据同步微服务,一个Restful接口搞定所有通用数据同步
Stars: ✭ 51 (+142.86%)
Mutual labels:  hive
hadoopoffice
HadoopOffice - Analyze Office documents using the Hadoop ecosystem (Spark/Flink/Hive)
Stars: ✭ 56 (+166.67%)
Mutual labels:  hive
wasp
WASP is a framework to build complex real time big data applications. It relies on a kind of Kappa/Lambda architecture mainly leveraging Kafka and Spark. If you need to ingest huge amount of heterogeneous data and analyze them through complex pipelines, this is the framework for you.
Stars: ✭ 19 (-9.52%)
Mutual labels:  jdbc

HiveJdbcStorageHandler

This project is still work in progress intending to submit a patch for HIVE-1555.

BASIC USAGE

hive --auxpath /home/myui/tmp/jdbc-storagehandler.jar;

CREATE EXTERNAL TABLE pg_model_sample90p (
  feature INT, 
  weight DOUBLE
)
STORED BY 'org.apache.hadoop.hive.jdbc.storagehandler.JdbcStorageHandler'
TBLPROPERTIES (
  "mapred.jdbc.driver.class"="org.postgresql.Driver",
  "mapred.jdbc.url"="jdbc:postgresql://host01/kddtrack2",
  "mapred.jdbc.username"="myui",
  "mapred.jdbc.input.table.name"="model_sample90p"
);

select * from pg_model_sample90p limit 10;
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].