I am implementing a simple recommendation system for a collection of user created components.
I was planning on doing this with JPA and a few dedicated EJB. My entities would have extra couple of lists containing the most up to date recommendations, then an EJB would crawl the data set and update this list periodically. The model is based on the relationships between components, and does not depend on past user behavior. I expect that the data set will remain relatively small. probably no more than half a million items.
I have a pretty good idea of how to do this with JPA and EJB, and I think for my particular use case, this would be very effective.
Should I spend the time to learn and implement Mahout? I do have a bit of experience with hadoop, although, I don't think my data set will be nearly large enough to justify bringing in the elephant.
Also, can anyone point me to a good primer on implementing recommendation systems with mahout?
Thanks a lot.