I have a a map-only job that outputs in TextOutputFormat.
I currently see three ways of compressing my output:
by defining map to compress through mapred.compress.map.output.*
by defining output to compress through mapred.output.compression.*
by defining the TextOutputFormat to compress through TextOutputFormat.setCompressOutput()
by composing one or more of the first 3 possibilities.
Any insight on how to do this properly?