Today we have released Pangool 0.60.3. The main change introduced into this version is the support for MapReduce 2.X API and YARN.
We had to create separated distributables because MapReduce 2.0 imposes binary incompatibilities. So, from now on will be different artifacts for Pangool:
<dependency>
<groupId>com.datasalt.pangool</groupId>
<artifactId>pangool-core</artifactId>
<version>0.60.3</version>
</dependency>
For Hadoop 2.X versions (and YARN):
<dependency>
<groupId>com.datasalt.pangool</groupId>
<artifactId>pangool-core</artifactId>
<version>0.60.3</version>
<classifier>mr2</classifier>
</dependency>
Also, there is a new Maven profile "mr2" that must be used to compile versions for Hadoop 2.X. For example, you can build this version with:
mvn install -Pmr2
--
Iván de Prado