Wilfried L. Bounsi
Wilfried L. Bounsi
This commit fixes the following error ``` [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project common: Compilation failure: Compilation failure: [ERROR] Source option 6 is no longer supported. Use...
Before:  After: 
I want to compress some file already inside hdfs using different compression levels. To do so, I write the following program: `Compress.java` ```java import ... import com.hadoop.compression.lzo.LzoCodec; public class Compress...