Wilfried L. Bounsi

Results 4 issues of 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: ![Screenshot from 2021-03-05 12-16-34](https://user-images.githubusercontent.com/24209192/110108660-c0f41280-7dac-11eb-843a-cbf951a0be5e.png) After: ![Screenshot from 2021-03-05 12-16-50](https://user-images.githubusercontent.com/24209192/110108686-c6e9f380-7dac-11eb-9c6e-c1def5e857a1.png)

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...