I am new to using Maven.

I have Java files that have dependencies. Like for example:

import org.apache.hadoop.fs.Path;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.client.Delete;
import org.apache.hadoop.hbase.client.Get;
import org.apache.hadoop.hbase.client.HTable;
import org.apache.hadoop.hbase.client.Put;

In the development server, there is no Java compiler. I am planning to compile the Java files on the desktop and pack the classes into jar files and then execute the program on the development server.

The development server has all the required files, the desktop not yet. How can we use Maven to care of the issue while compiling it on the desktop?

EDIT:

I want to add data into hbase tables using Java. Hbase works fine in the dev server. I am able to create tables there through command line in dev serv. But hbase/hadoop is not there in the desktop environment.

So will downloading jars help, or do I need to setup hadoop and install hbase locally?

link|improve this question

feedback

4 Answers

up vote 0 down vote accepted

hadoop-core, hbase, and zookeeper are the required HBase dependencies. Additionally, you should try and use the Cloudera ones as they fix some additional bugs the Apache jars have. Look here.

Additionally, you do not have to install HBase locally. When you create the HBase configuration just change the zookeeper quorom to point to the server in which the Zookeeper resides.

Configuration conf = HBaseConfiguration.create();
conf.set("hbase.zookeeper.quorum", SERVER);
conf.set("hbase.zookeeper.property.clientPort", PORT);
link|improve this answer
feedback

If I understand correctly, you need to configure some compile-time-only dependencies in your Maven pom. You can do it in the dependencies section, e.g.:

<dependencies>
    <dependency>
        <groupId>org.apache.hadoop</groupId>
        <artifactId>hadoop-core</artifactId>
        <version>0.20.2</version>
        <scope>provided</scope>
    </dependency>
    ...
</dependencies>

You need to determine the artifactId and version for each of the needed Hadoop packages, then add them to the dependencies.

link|improve this answer
That's one. See my answer for the required dependencies. – Tony Aug 29 '11 at 22:27
feedback

Yes, Maven has a near vertical learning curve.

It looks like you are doing a very small inhouse job on your own, or with a very small team. In that case, it's probably enough if you set up an IDE (eclipse or NetBeans), resolving the dependencies manually (downloading jars in a /lib folder in the project), and compile and export a binary (jar) manually.

link|improve this answer
Yes, I am doing a small inhouse job by myself. I would like to do it with Maven. For now I will try manually first. I want to add data into hbase tables using java. Hbase works fine in the dev server. I am able to create tables there through command line in dev serv. But hbase/hadoop is not there in the desktop environment. So will downloading jars help or Do I need to setup hadoop and install hbase locally? – redmave Aug 29 '11 at 18:22
I am not sure, but I am starting to suspect that you trying to shoot a mosquito with a cannon here. Maybe you need a distributed high capacity database running on LARGE clusters, and then hadoop is right for you, but I suspect that you just need a database? Derby is an embedded relational database, bundled with java. If you just are going to use one machine, i believe hadoop is overkill. – KarlP Aug 29 '11 at 20:00
1  
So, the question is: are you going to store insane amounts of data? Insane is a bit inexact, but probably more than you think. 1 TB should not be a problem even for Derby, on a 64 bit machine. – KarlP Aug 29 '11 at 20:12
I am using this as a learning exercise, more than anything. – redmave Aug 29 '11 at 21:21
I see: Just an advise, directly from wiki.apache.org/hadoop/HadoopIsNot : "Hadoop and MapReduce is not a place to learn Java programming". I suggest that you take the hint :-) – KarlP Aug 30 '11 at 18:36
feedback

From the maven site, set the scope to provided for the dependency.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.