is there a way by which i can update client side after below series of activities
1 upload file
2. read file
3. bulk insert
4. update client that job is completed.
I am able to perform
1.upload file through through busboy.
2.read file node sync/async node.js file read.
3.bulk insert sequelize bulk insert.(data read through bluebird mapSeries).
4.(missing piece) since i insert around 200k records in single shot. it might take some time
hence i was thinking put in a job queue and after completion notify client through socket.io or rabbitMQ ! Any suggestions, pointers on how to achieve 4th pointer !