Giter VIP home page Giter VIP logo

Comments (7)

foxbunny avatar foxbunny commented on August 18, 2024

Also tested same with Yaws 1.88.

Also, with temp_file, there is no problem.

It's obviously not very smart to not use temp file if large files are expected, but to me it seems somewhat excessive to require over 1GB of RAM for a 12MB upload, I think.

from yaws.

vinoski avatar vinoski commented on August 18, 2024

Thanks for providing all the details -- I've duplicated it on the latest github bits as well.

I'll investigate why it's trying to use so much memory.

from yaws.

vinoski avatar vinoski commented on August 18, 2024

Turns out the multipart/form-data handling code is quite old, almost 10 years as a matter of fact. It converts all the posted data into lists, keeps multiple copies of the lists, and works through them byte by byte. Together all this adds up to significant memory usage.

from yaws.

foxbunny avatar foxbunny commented on August 18, 2024

I didn't know what a web form was back then. :D

from yaws.

vinoski avatar vinoski commented on August 18, 2024

:-) Yes, I was surprised to find the code had not really been touched since then.

Improvements will be committed shortly.

from yaws.

vinoski avatar vinoski commented on August 18, 2024

I've pushed changes to try to address this problem. Uploads that used to cause Yaws to run out of memory on my laptop now work, so memory usage is better, but it's still too high. Unfortunately backwards compatibility makes this hard to fix due to the need to convert results to lists, but with my next commit I hope to add a new option to the multipart handling functions to tell Yaws to leave the data as binaries. This should allow apps willing to use the new option to handle large uploads.

from yaws.

vinoski avatar vinoski commented on August 18, 2024

Added new binary option for handling uploaded file data as binaries rather than lists, though for backward compatibility the list form is still the default. Given this addition together with the previous fix, I'm closing this issue.

from yaws.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.