I need to add BigDecimals in Hadoop. I'm currently using Apache Pig BigDecimalWritable but Pig seems to be completely outdated.
<dependency>
<groupId>org.apache.pig</groupId>
<artifactId>pig</artifactId>
<version>0.17.0</version>
</dependency>
This version is 5 years old!!
I now use instead:
Parquet contains a BigDecimalWritable and is more up to date.
Would there be a better solution?