I need a way to send large files (5 GB) to my webserver, for this I use a plugin that can send chuncks of 100MB. I configured request/response limits and if I send files with a maximum of approximately 800MB, then everything is working fine. If I send larger files then the 10th chunk just stops working. No error or anything, it just stays in a loading state.
I then tried to send smaller chunks (10MB), but then it stalls after 98 requests. With 6mb chunks it also failed and when I finally tried with 1mb chunks it seems to work till the end. The same thing happens when I don't send chunks, but regular files in serial with the same size.
Obviously I'm happy that it worked, but it feels like it's more luck than wisdom, and I'm hesitant to use this in production if I dont understand why the smaller chunks work and the bigger don't.
Does anybody have any idea what could be causing this behaviour?
I'd rather set the chunk size to about 100mb, so smaller files are send as one file instead of chunks I need to combine again. So I'd like to know how I can enable the larger chunks.