Created 07-05-2016 05:37 PM
Found hadoop-core-1.0.3.jar is for v1 only, and haven't found which ones to use with v2. I got Sandbox, but could not fine the correct client jar to use. Could you please point it out?
Created 07-05-2016 05:46 PM
Hi @Felix Albani,
If you are using Maven to handle your dependencies :
http://mvnrepository.com/artifact/org.apache.hadoop/hadoop-client
The last one:
<dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-client</artifactId> <version>2.7.2</version> </dependency>
Hope this helps.
Created 07-05-2016 05:46 PM
Hi @Felix Albani,
If you are using Maven to handle your dependencies :
http://mvnrepository.com/artifact/org.apache.hadoop/hadoop-client
The last one:
<dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-client</artifactId> <version>2.7.2</version> </dependency>
Hope this helps.
Created 07-06-2016 01:11 PM
Thank you @Pierre Villard, I will try using maven instead of trying to resolve dependencies myself