Skip to content

Instantly share code, notes, and snippets.

View gautamdudeja90's full-sized avatar

Gautam Dudeja gautamdudeja90

View GitHub Profile
@acanalesg
acanalesg / hadoop-streaming.sh
Last active September 14, 2023 12:26
hadoop streaming compression
yarn jar /usr/lib/hadoop-mapreduce/hadoop-streaming.jar -Dmapred.output.compress=true -D mapred.output.compression.codec=org.apache.hadoop.io.compress.BZip2Codec -input s3://acg-tests/dwell_plus/20161001 -output s3://acg-tests/bzip/dwell_plus/20161001/ -mapper /bin/cat -numReduceTasks 0
@jiffle
jiffle / GradleCheatsheet.md
Last active April 14, 2024 10:00 — forked from qrman/GradleCheatsheet.md
Cheatsheet of Gradle Commands and Config

Command Cheatsheet

  • Convert Maven build to gradle

    gradle init

  • Initialise new project folder structure (Java example)

    gradle init --type java-library