Problem:
When I try to upload files larger then 226mb to a n8n webhook the data gets truncated off. Is there any limit that i can set?
I tried uploading files with 204mb and smaller and there everything works. But If I upload larger files the request body is only filled with the parameters before the uploaded file.
What is the error message (if any)?
No there was no error message. I checked if the data is there and then i throw my own error.
Please share your workflow
(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
I would have expected the filesystem and the payload size change to have helped, When you are uploading the data are you going through a reverse proxy or connecting directly to the IP of your n8n instance?
n8n is working behind traefik as reverse proxy. But this is not the problem since I already tried the upload by bypassing treafik and using the port directly.
The strange thing is that the request header in n8n shows the correct length and if I send other data before the upload that data is shown. If I put it after the upload that data (including the uploaded file) is not visible in the webhook execution.