[ https://issues.apache.org/jira/browse/HIVE-12971?focusedWorklogId=281002&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-281002 ]
ASF GitHub Bot logged work on HIVE-12971: ----------------------------------------- Author: ASF GitHub Bot Created on: 23/Jul/19 12:59 Start Date: 23/Jul/19 12:59 Worklog Time Spent: 10m Work Description: granthenke commented on pull request #733: HIVE-12971: Add Support for Kudu Tables URL: https://github.com/apache/hive/pull/733#discussion_r306303135 ########## File path: itests/util/src/main/java/org/apache/hadoop/hive/cli/control/CliConfigs.java ########## @@ -778,4 +778,27 @@ public MiniDruidLlapLocalCliConfig() { } } + /** + * The CliConfig implementation for Kudu. + */ + public static class KuduCliConfig extends AbstractCliConfig { + public KuduCliConfig() { + super(CoreKuduCliDriver.class); + try { + setQueryDir("kudu-handler/src/test/queries/positive"); + + setResultsDir("kudu-handler/src/test/results/positive"); + setLogDir("itests/qtest/target/qfile-results/kudu-handler/positive"); + + setInitScript("q_test_init_src.sql"); + setCleanupScript("q_test_cleanup_src.sql"); + + setHiveConfDir(""); + setClusterType(MiniClusterType.NONE); Review comment: I created a KUDU type that uses Tez type and local fs. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 281002) Time Spent: 2.5h (was: 2h 20m) > Hive Support for Kudu > --------------------- > > Key: HIVE-12971 > URL: https://issues.apache.org/jira/browse/HIVE-12971 > Project: Hive > Issue Type: New Feature > Affects Versions: 2.0.0 > Reporter: Lenni Kuff > Assignee: Grant Henke > Priority: Major > Labels: pull-request-available > Attachments: HIVE-12971.0.patch, HIVE-12971.1.patch, > HIVE-12971.2.patch, HIVE-12971.3.patch > > Time Spent: 2.5h > Remaining Estimate: 0h > > JIRA for tracking work related to Hive/Kudu integration. > It would be useful to allow Kudu data to be accessible via Hive. This would > involve creating a Kudu SerDe/StorageHandler and implementing support for > QUERY and DML commands like SELECT, INSERT, UPDATE, and DELETE. Kudu > Input/OutputFormats classes already exist. The work can be staged to support > this functionality incrementally. -- This message was sent by Atlassian JIRA (v7.6.14#76016)