I currently have a big issue that I'm not able to solve.
I have a REST controller which allows to upload and unzip a large file (700 MB compressed, 11 GB uncompressed), but it takes so much time that it systematically loses the connection with the GUI.
To fix that, I have tried to use Spring Batch to make the unzip step asynchronous. However now it loses the connection with the db.
Is there is a way to do make the REST controller handle the large files without losing connection to either DB and GUI?
Thanks a lot in advance.