You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Dai, Jason" <ja...@intel.com> on 2013/02/06 07:54:35 UTC

Document Store (DOT) on HBase (was RE: Project Panthera status)

Hi Ted,

Sorry for the late reply - most of us are out due to Chinese New Year holidays.

The document store (DOT) code is currently added to pom.xml as a profile, and therefore you will need to build it using "mvn compile/package -Pdot" (see https://github.com/intel-hadoop/hbase-0.94-panthera/blob/master/BUILD.txt). We have also updated readme accordingly.

For DOT code base, we have been following the suggestions from the community (e.g., HBASE-6800<https://issues.apache.org/jira/browse/HBASE-6800> and HBASE-6805<https://issues.apache.org/jira/browse/HBASE-6805>), and factoring the code as a separate co-processor application to HBase (rather than replicating the HBase code). We have made the necessary changes to HBase infrastructure (see HBASE-7387<https://issues.apache.org/jira/browse/HBASE-7387>), and are in the process of refactoring the code (using a custom StoreScanner as suggested in HBASE-6805<https://issues.apache.org/jira/browse/HBASE-6805>.)

Thanks,
-Jason

From: Ted Yu [mailto:yuzhihong@gmail.com]
Sent: Tuesday, February 05, 2013 1:54 AM
To: Dai, Jason
Cc: dev@hbase.apache.org; user@hbase.apache.org
Subject: Project Panthera status

I checked out git://github.com/intel-hadoop/hbase-0.94-panthera.git<http://github.com/intel-hadoop/hbase-0.94-panthera.git> today and I got the following compilation error:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile (default-compile) on project hbase: Compilation failure: Compilation failure:
[ERROR] /Users/tyu/panthera/src/main/java/org/apache/hadoop/hbase/mapreduce/ImportTsv.java:[39,34] package org.apache.hadoop.hbase.dot does not exist
[ERROR]
[ERROR] /Users/tyu/panthera/src/main/java/org/apache/hadoop/hbase/util/PreSplitTable.java:[39,34] package org.apache.hadoop.hbase.dot does not exist
[ERROR]
[ERROR] /Users/tyu/panthera/src/main/java/org/apache/hadoop/hbase/util/PreSplitTable.java:[40,34] package org.apache.hadoop.hbase.dot does not exist
[ERROR]
[ERROR] /Users/tyu/panthera/src/main/java/org/apache/hadoop/hbase/util/PreSplitTable.java:[41,51] package org.apache.hadoop.hbase.dot.access.mapreduce does not exist
[ERROR]
[ERROR] /Users/tyu/panthera/src/main/java/org/apache/hadoop/hbase/mapreduce/ImportTsv.java:[260,4] cannot find symbol
[ERROR] symbol  : variable DotUtil
[ERROR] location: class org.apache.hadoop.hbase.mapreduce.ImportTsv
[ERROR]
[ERROR] /Users/tyu/panthera/src/main/java/org/apache/hadoop/hbase/mapreduce/ImportTsv.java:[264,14] cannot find symbol
[ERROR] symbol  : variable DotUtil
[ERROR] location: class org.apache.hadoop.hbase.mapreduce.ImportTsv
[ERROR]
[ERROR] /Users/tyu/panthera/src/main/java/org/apache/hadoop/hbase/mapreduce/ImportTsv.java:[273,6] cannot find symbol
[ERROR] symbol  : variable DotUtil
[ERROR] location: class org.apache.hadoop.hbase.mapreduce.ImportTsv
[ERROR]
[ERROR] /Users/tyu/panthera/src/main/java/org/apache/hadoop/hbase/util/PreSplitTable.java:[166,11] cannot find symbol
[ERROR] symbol  : variable DotUtil
[ERROR] location: class org.apache.hadoop.hbase.util.PreSplitTable
[ERROR]
[ERROR] /Users/tyu/panthera/src/main/java/org/apache/hadoop/hbase/util/PreSplitTable.java:[169,51] cannot find symbol
[ERROR] symbol  : variable DotUtil
[ERROR] location: class org.apache.hadoop.hbase.util.PreSplitTable
[ERROR]
[ERROR] /Users/tyu/panthera/src/main/java/org/apache/hadoop/hbase/util/PreSplitTable.java:[175,30] cannot find symbol
[ERROR] symbol  : variable DotConstants
[ERROR] location: class org.apache.hadoop.hbase.util.PreSplitTable
[ERROR]
[ERROR] /Users/tyu/panthera/src/main/java/org/apache/hadoop/hbase/util/PreSplitTable.java:[180,12] cannot find symbol
[ERROR] symbol  : variable DotUtil
[ERROR] location: class org.apache.hadoop.hbase.util.PreSplitTable

The last checkin was done on Sep 18, 2012

Is this project actively maintained ?

Thanks