Streaming support for attachments #1348
bschmalhofer
started this conversation in
Ideas
Replies: 1 comment
-
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. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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.
Beta Was this translation helpful? Give feedback.
All reactions