GithubHelp home page GithubHelp logo

Comments (9)

101arrowz avatar 101arrowz commented on May 18, 2024

That's odd. I've tried this with multiple massive files and haven't had this problem.

Could you try the "streaming GZIP" preset? It's likely that the browser failed to load the 2.7GB of data into memory. Streaming avoids this problem.

from fflate.

feross avatar feross commented on May 18, 2024

The streaming example just hangs:

Screen Shot 2021-03-10 at 12 27 00 PM

from fflate.

101arrowz avatar 101arrowz commented on May 18, 2024

Compressing 2.7GB of data can take around a minute or two, longer on slow computers. I'll run the demo on a large filestream and let you know my findings.

from fflate.

feross avatar feross commented on May 18, 2024

Actually, I might have misunderstood the UI -- I'll let it run and report back if it finishes.

from fflate.

feross avatar feross commented on May 18, 2024

It looks like the streaming example throws an exception:

Uncaught (in promise) TypeError: Failed to fetch
Promise.then (async)
eval @ VM459:12
Br @ sandbox.ts:144
onClick @ index.tsx:510
j @ preact.module.js:1

from fflate.

101arrowz avatar 101arrowz commented on May 18, 2024

I found the issue, I'm trying to concatenate the output buffer into an ArrayBuffer, which throws because it's over 2GB, the max in browsers. Will fix by only calculating the length rather than concatenating.

from fflate.

feross avatar feross commented on May 18, 2024

Makes sense, thanks for the quick debugging!

from fflate.

101arrowz avatar 101arrowz commented on May 18, 2024

Try pasting this into the code box:

const { AsyncGzip } = fflate;
// Theoretically, you could do this on every file, but I haven't done that here
// for the sake of simplicity.
const file = files[0];
const gzipStream = new AsyncGzip({ level: 6 });
// We can stream the file through GZIP to reduce memory usage
const gz = file.stream().pipeThrough(toNativeStream(gzipStream));
let sz = 0
gz.pipeTo(new WritableStream({
  write(dat) { sz += dat.length; console.log(sz); },
  close() { callback('Length: ' + sz); }
}));

It took a while but worked for me.

from fflate.

feross avatar feross commented on May 18, 2024

Perfect, that worked!

from fflate.

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.