Hi,
It would be possible to create HadoopSnappyInput/OutputStream classes based on
snappy-java if the information of the data compression scheme used in Hadoop is available.
For example, snappy-java uses the following stream format to compress large data streams:
|header|chunk size| compressed data using snappy | cunk size | compressed data ...| ...
If no header is found in the compressed data, SnappyInputStream tries to decompress the whole data using snappy.
If SnappyInputStream doesn't work for Hadoop result files, it might be using some special
format tailored for Hadoop.
We need to look at the code of Hadoop.
Regards,