Provides support for creating read-only Hive external tables that can read the results of a query run on the Analytics Accelerator attached to DB2 for z/OS.
- Download the DB2 JDBC driver and extract the files
db2jcc4.jar
anddb2jcc_license_cisuz.jar
- Download the latest
hive-jdbc-storage-handler-*.jar
from this project's releases
-
Tested with Horton Data Platform (HDP) 2.1, Hive 0.13.0
-
Start Hive CLP (type 'hive' in a command line window) and add the JAR files to the classpath using the following commands:
ADD JAR /path/to/hive-jdbc-storage-handler-1.1.1-cdh4.3.0-SNAPSHOT-dist.jar; ADD JAR /path/to/db2jcc4.jar; ADD JAR /path/to/db2jcc_license_cisuz.jar;
-
Still in CLP, you can now create an external JDBC table in Hive:
CREATE EXTERNAL TABLE db2z_test ( id STRING, part_name STRING, warehouse_id STRING, created STRING ) STORED BY 'com.qubitproducts.hive.storage.jdbc.JdbcStorageHandler' TBLPROPERTIES ( "qubit.sql.database.type" = "DB2Z", "qubit.sql.jdbc.url" = "jdbc:db2://db2z.server.or.ip:11512/DWADB12:user=username\;password=***\;specialRegisters=CURRENT QUERY ACCELERATION=ALL\;", "qubit.sql.jdbc.driver" = "com.ibm.db2.jcc.DB2Driver", "qubit.sql.query" = "SELECT part_id, part_name, warehouse_id, created_datetime FROM parts", "qubit.sql.column.mapping" = "id=part_id, created=created_datetime:date" );
qubit.sql.database.type
- Currently supportsMYSQL
,H2
,DERBY
andDB2Z
.qubit.sql.jdbc.url
- Full JDBC connection URL.qubit.sql.jdbc.driver
- JDBC driver class name.qubit.sql.query
- Query to run against the database. The Storage handler is intelligent enough to determine the correct conditions to apply to the database query based on the hive query being executed. As such, please ensure that there are noWHERE
clauses defined here. If column names differ between the hive table and the query, use thequbit.sql.column.mapping
property to define the mappings.
qubit.sql.column.mapping
- If the Hive column names are different from the corresponding table column, use this property to indicate it. Format is:hiveColumnName=dbColumnName[:type]
separated by commas. Currently the only acceptedtype
isdate
. Sample usage:"qubit.sql.column.mapping" = "id=part_id, created=created_datetime:date"
. Only the columns that differ need to be specified.qubit.sql.jdbc.fetch.size
- Resultset fetch size. Default value is 1000.- Connections to the database are made through a DBCP connection pool.
Specify any DBCP configuration
options by
prefixing them with
qubit.sql.dbcp.
. Eg:qubit.sql.dbcp.maxActive=5
The Storage handler is intelligent enough to determine the correct conditions to apply to the database query based on the hive query being executed. Therefore no additional steps need to be performed while querying.
Adding a WHERE-clause to qubit.sql.query
will disable predicate push-down
from the Hive query. The query will be run as-is.
Resultset fetch size (the default is 1000 rows) can be changed at query time:
SET qubit.sql.jdbc.fetch.size=500;
- Clone the git project and run
mvn clean package
to produce the storage handler JAR.