Hello Ebot,
We have implemented a poor-man's review parser for Qype... and it saves the result into MongoDB.
As you will see, there is one two things you need to do for persisting the output of a Pangool job to Mongo:
1) Defining the mongo URI:
MongoConfigUtil.setOutputURI(conf, "mongodb://localhost/test.qype");
2) Setting the appropriate OutputFormat in the Pangool job builder (be it TupleMRBuilder or MapOnlyJobBuilder):
builder.setOutput(new Path(outPath), new HadoopOutputFormat(MongoOutputFormat.class), Text.class, BSONObject.class);
Give it a try and let us know,
Thanks,