[ 
https://issues.apache.org/jira/browse/BIGTOP-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13992487#comment-13992487
 ] 

Konstantin Boudnik commented on BIGTOP-1289:
--------------------------------------------

I have just stepped on the issue that simply updating hbase version won't help 
the cause: we all need to reflect the fact that HBase artifact have split into 
a few after crossing the event horizon. E.g. something like this would need to 
happen to hbase smoke tests:
{code}
--- a/bigtop-tests/test-artifacts/hbase/pom.xml
+++ b/bigtop-tests/test-artifacts/hbase/pom.xml
@@ -41,11 +41,15 @@
     </dependency>
     <dependency>
       <groupId>org.apache.hbase</groupId>
-      <artifactId>hbase</artifactId>
+      <artifactId>hbase-client</artifactId>
     </dependency>
     <dependency>
       <groupId>org.apache.hbase</groupId>
-      <artifactId>hbase</artifactId>
+      <artifactId>hbase-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hbase</groupId>
+      <artifactId>hbase-common</artifactId>
       <type>test-jar</type>
     </dependency>
{code} 
and to the top level pom file:
{code}
       <dependency>
         <groupId>org.apache.hbase</groupId>
-        <artifactId>hbase</artifactId>
-        <version>${hbase.version}</version>
+        <artifactId>hbase-client</artifactId>
+        <version>${hbase.version}-hadoop2</version>
       </dependency>
       <dependency>
         <groupId>org.apache.hbase</groupId>
-        <artifactId>hbase</artifactId>
-        <version>${hbase.version}</version>
+        <artifactId>hbase-common</artifactId>
+        <version>${hbase.version}-hadoop2</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.hbase</groupId>
+        <artifactId>hbase-common</artifactId>
+        <version>${hbase.version}-hadoop2</version>
         <type>test-jar</type>
{code}
... and perhaps more.
I think we need a separate issue for that.


> Update hadoop version (including hadoop components) to 2.3
> ----------------------------------------------------------
>
>                 Key: BIGTOP-1289
>                 URL: https://issues.apache.org/jira/browse/BIGTOP-1289
>             Project: Bigtop
>          Issue Type: Improvement
>          Components: General, Tests
>    Affects Versions: 0.7.0
>            Reporter: Martin Bukatovic
>            Assignee: Martin Bukatovic
>             Fix For: 0.8.0
>
>         Attachments: 
> 0001-BIGTOP-1289-update-component-versions-in-root-pom-fi.patch
>
>
> Because we are switching to protobuf 2.5 (BIGTOP-1241) as used by hadoop 2.1 
> and later, we need to upgrade top level pom file to specify compatible hadoop 
> version, including all hadoop components.
> So in top level `bigtop/pom.xml` file, change:
>  * /project/properties/hadoop.version = 2.3.0
>  * update /project/properties/{hbase,pig, ... } accordingly



--
This message was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to