Welcome to the Microsoft Q&A Platform!
Thank you for reaching out about your file upload scenario. We understand this can be frustrating. While Azure Functions are great for many tasks, they're not ideally suited for very large file uploads (especially those over 100MB). This is due to limitations in request size, memory usage, and potential timeouts. Even adjusting settings like FUNCTIONS_REQUEST_BODY_SIZE_LIMIT doesn't fully resolve these challenges for larger files.
Given these challenges, could you try alternative solutions which is already mentioned in the thread you have gone through such as Azure Blob Storage direct uploads, which are specifically designed for managing large files efficiently or Chunked Uploads, Break the file into smaller chunks (e.g., <100MB) and upload them sequentially or in parallel. The Function can reassemble the chunks in Blob Storage.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.