Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to specify a compression option on a Flume agent so that the data is transferred to the collector in a compressed format? I know there are compression options on the collector level, but it would be also extremely useful to be able to transfer compressed data from the agent, too.

Thank you!

share|improve this question

1 Answer

Flume has the gzip and gunzip sink decorators that you can use. Put the gzip decorator on your agent sink and the gunzip decorator on your collector sink, and transferring compressed data between the agent and collector should Just Work.

share|improve this answer
1  
Is it possible to zip the data on the agent and let it flow zipped through the collector into HDFS without unzipping / zipping it again? – Martin Konicek Jun 8 '11 at 9:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.