Streaming support for attachments #1348
Closed
bschmalhofer
started this conversation in
Ideas
Replies: 2 comments
|
Streaming has been implemented for article storage in S3. But IMHO nothing speaks against doing the same for file based attachments. I don't know whether it is possible for articles in the database backend. |
0 replies
|
Closing the discussion here, as there now is https://ideas.otobo.io/posts/7/streaming-support-for-attachments . |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Currently, when an user request to download an attachment the following happens:
This means that large files eat up a lot of memory. A regular webserver does not do that when serving static files, the file is streamed. Gazelle does that too for the files in var/httpd/htdocs. See https://metacpan.org/pod/Plack::App::File. It would be nice if OTOBO could do that too. Of course this should also work for attachments served from S3.
All reactions