Reputation: 760
My usage of MongoDB is quite simple. I have only a replica set and handle some basic queries without using Map Reduce.
I have heard that Hadoop is great data processing tool which can increase performance once MongoDB connects to. It handle Map Reduce well but is it useful in my case which does not contain any Map Reduce functions?
Moreover, if I use Map Reduce in MongoDB and connect to Hadoop, how will be the performance increased?
Upvotes: 0
Views: 118
Reputation: 1704
Hadoop is good for Batch Processing and on a huge volume of data (GB's to TB's). So if you are not expecting that volume of data in your case and you need instant output of your query you can better do it by mongo alone. Hadoop might be an overkill for the job.
Upvotes: 1