Semantic Versioning

All developer should follow this convention while publishing releases.

From semver.org:

Given a version number MAJOR.MINOR.PATCH, increment the:

 
0
Kudos
 
0
Kudos

Now read this

Streaming data to Hadoop using Unix Pipes? Use Pipefail

If you pipe the output of a statement to hadoop streaming you must know about the unix pipefail option. To demonstrate what it does, try this out in your commandline: $> true | false $> echo $? 1 $> false | true $> echo $? 0... Continue →