You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have bundled @aws-sdk/lib-storage and @aws-sdk/client-s3 with webpack for use it on frontend
If upload a file of 112 GB, after 25 GB chrome crash for out of memory
// Import path for resolving file pathsvarpath=require("path");module.exports={mode: 'production',performance: {hints: false},// Specify the entry point for our app.entry: [path.join(__dirname,"browser.js")],// Specify the output file containing our bundled code.output: {path: __dirname,filename: 'bundle.js'},// Enable WebPack to use the 'path' package.resolve: {fallback: {path: require.resolve("path-browserify")}}};
RanVaknin
added
investigating
Issue is being investigated and/or work is in progress to resolve the issue.
p2
This is a standard priority issue
and removed
needs-triage
This issue or PR still needs to be triaged.
labels
Mar 5, 2024
I'm able to reproduce this behavior both on Chrome and on Firefox. After roughly 40gb I'm seeing (the network tab uploads up to 40gb and then this error is being raised).
This behavior is the same between v2 and v3.
Thanks,
Ran~
RanVaknin
added
queued
This issues is on the AWS team's backlog
and removed
investigating
Issue is being investigated and/or work is in progress to resolve the issue.
labels
May 10, 2024
cesco69
changed the title
lib-storage: upload file of 112 GB crash chrome for out of memory
lib-storage: upload file of 112 GB crash chrome for out of memory (after 25 GB)
Jan 28, 2025
Checkboxes for prior research
Describe the bug
I have bundled
@aws-sdk/lib-storage
and@aws-sdk/client-s3
with webpack for use it on frontendIf upload a file of 112 GB, after 25 GB chrome crash for out of memory
SDK version number
@aws-sdk/[email protected]
,@aws-sdk/[email protected]
Which JavaScript Runtime is this issue in?
Browser
Details of the browser/Node.js/ReactNative version
Latest chrome
Reproduction Steps
I have bundled
@aws-sdk/lib-storage
and@aws-sdk/client-s3
withwebpack
for use it on frontendpackage.json
browser.js
webpack.config.js
Build produce bundle.js
usage
index.html
If upload a file of 112 GB, after 25 GB chrome crash for out of memory.
Observed Behavior
Chrome crash for out of memory after 25 GB of uploaded file
Expected Behavior
no crash
Possible Solution
No response
Additional Information/Context
Side note: it works with SDK 2.0
The text was updated successfully, but these errors were encountered: