[
https://issues.apache.org/jira/browse/HCATALOG-73?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13123290#comment-13123290
]
Sushanth Sowmyan commented on HCATALOG-73:
------------------------------------------
This fixes the build, I'm going to go ahead and patch with this change as well.
If another approach is desired, we can open another jira for that and fix it.
{noformat}
[hortonso@hrt10n00 hcat]$ svn diff storage-drivers/hbase/build.xml
Index: storage-drivers/hbase/build.xml
===================================================================
--- storage-drivers/hbase/build.xml (revision 1180266)
+++ storage-drivers/hbase/build.xml (working copy)
@@ -70,6 +70,7 @@
<property name="test.all.file" value="${test.src.dir}/all-tests"/>
<property name="test.exclude.file" value="${test.src.dir}/excluded-tests"/>
<property name="test.output" value="no"/>
+ <property name="test.warehouse.dir" value="/tmp/hcat_junit_warehouse"/>
<property name="hive.conf.dir" value="${hive.root}/conf"/>
<!-- ivy properteis set here -->
@@ -241,9 +242,12 @@
<delete dir="${test.log.dir}"/>
<mkdir dir="${test.log.dir}"/>
+ <delete dir="${test.warehouse.dir}"/>
+ <mkdir dir="${test.warehouse.dir}"/>
<junit showoutput="${test.output}" printsummary="yes"
haltonfailure="no"
fork="yes" maxmemory="512m" dir="${basedir}"
timeout="${test.timeout}"
errorProperty="tests.failed" failureProperty="tests.failed">
+ <sysproperty key="hive.metastore.warehouse.dir"
value="${test.warehouse.dir}"/>
<classpath>
<pathelement location="${test.build.classes}" />
<pathelement location="." />
{noformat}
> Output Storage Driver for HBase (Direct PUTs)
> ---------------------------------------------
>
> Key: HCATALOG-73
> URL: https://issues.apache.org/jira/browse/HCATALOG-73
> Project: HCatalog
> Issue Type: Sub-task
> Affects Versions: 0.3
> Reporter: Francis Liu
> Assignee: Francis Liu
> Labels: HBASE
> Attachments: hbase_storage_driver.patch,
> hbase_storage_driver_rev2.patch, hbase_storage_driver_rev3.patch,
> hbase_storage_driver_rev4.patch, hbase_storage_driver_rev5.patch
>
>
> This is the first variation for an HBase Output Storage Driver. Which will be
> doing individual PUTs for each row. The next iteration will involve the use
> of bulk imports.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira