I am working on a large application in node.js in which around 5000 users are required to upload excel files on a daily basis. Once a file is uploaded, app needs to evaluate that file and after some db validations, process these files....I am able to upload and process single file using multer but when multiple users are uploading, the system just went into a deadlock...I am using SQL server database. Is there any solution to handle this situation.
Thanks in advance.