I have a task to import a csv file to mongoDB and SOLR.
My initial thought was to read in the csv and do whatever parsing needs to be done and insert direct to mongodb, then tail the mongodb oplog and insert to rabbitmq, which would then feed to solr.
Currently it feeds fine to rabbitmq, but stalls when inserting to solr. Am i taking the correct approach?
should i parse the csv to rabbitmq then feed to mongo and solr separately? or any other approach?
thanks