In a Hadoop application dealing with multimedia files, what considerations should be made for InputFormat and compression?

  • CombineFileInputFormat with Bzip2
  • Custom InputFormat with LZO
  • KeyValueTextInputFormat with Snappy
  • TextInputFormat with Gzip
In a Hadoop application handling multimedia files, using CombineFileInputFormat with Bzip2 compression is beneficial. This allows processing multiple small files as a single split, reducing overhead, and Bzip2 is suitable for compressing multimedia files.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *