-1

How do i upload a file asynchronously using helidon MP and Helidon SE. and whats the recommended size limits when we upload file from browser over https using any of these helidon framework?

I have files from 500mb to 5 gb to be uploaded from user local machine.

1 Answers1

0

Short answer: there aren't any limits. If you want to enforce some limits I'd recommend doing it with a reverse proxy (E.g. nginx).

When using Helidon SE make sure you don't do any buffering while processing the uploaded payload (see the example listed above).

When using MultiPart in Helidon MP, you are essentially using jersey-media-multipart which is based on Mimepull. It uses a buffer threshold and will write to disk as needed.

Romain Grecourt
  • 488
  • 2
  • 4