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

Can someone highlight the pros and cons for Hector's batch Mutation and using Hadoop jobs to load data into Cassandra?

I know in Hector you can do something like the following:

mutator.addInsertion(...);
mutator.execute();

And in Hadoop you can use MR jobs to load data into Cassandra.

I'm looking for the reasons to use or not to use each of them. Thanks!

share|improve this question

1 Answer

up vote 2 down vote accepted

If the datasource is not currently in hadoop (or hbase) I would recommend just a multi-threaded loader using Mutator as above to keep down the number of moving parts.

This gist is dated, but the approach would be similar: https://gist.github.com/397574

Let me know if you want more details.

share|improve this answer
Thanks zznate. I would definitely like more details about it. Right now, I'm just using straight mutator.addInsertion() for loading CSVs. I would like to see a multi-threaded section of code if you have it. The reason I was thinking about using hadoop jobs was because I had looked at mumakil. But that solution seems a bit more complex that just regular mutators. – max Aug 16 '11 at 23:21

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.