Bug : EAGAIN when use `plasmo package`

EAGAIN when using plasmo package
% yarn package --verbose
yarn run v1.22.22
warning package.json: No license field
$ plasmo package --verbose
šŸŸ” 0 | Running command: package
šŸŸ£ Plasmo v0.85.2
šŸ”“ The Browser Extension Framework
šŸ”µ INFO | Prepare to package the extension bundle...
šŸŸ” 1 | Creating Manifest Factory...
šŸŸ” 2 | Ensure exists: /Users/dp/work/extension/.plasmo
šŸŸ” 3 | /Users/dp/work/extension/assets/icon.png found, creating resized icons
šŸŸ” 4 | Creating static templates for popup
šŸŸ” 5 | Creating static templates for options
šŸŸ” 6 | Creating static templates for newtab
šŸŸ” 7 | Creating static templates for devtools
šŸŸ” 8 | Creating static templates for sidepanel

(...)
šŸŸ” 18 | { messageHandlerList: [], portHandlerList: [] }
šŸŸ” 19 | Creating BGSW entry
šŸŸ” 20 | Hash changed, updating manifest


šŸ”“ ERROR | EAGAIN
šŸŸ” 21 | Error: EAGAIN
at new Worker (node:internal/worker:291:19)
at wk (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:22:13)
at wrkr (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:893:12)
at astrmify (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:930:13)
at new AsyncDeflate (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:1086:9)
at new AsyncZipDeflate (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:1949:18)
at file:///Users/dp/work/extension/node_modules/plasmo/dist/index.js:166:10563
at new Promise (<anonymous>)
at Qr (file:///Users/dp/work/extension/node_modules/plasmo/dist/index.js:166:10341)
at async Zh (file:///Users/dp/work/extension/node_modules/plasmo/dist/index.js:166:11510)
šŸ”“ EXIT | This program will terminate in 3 seconds...
% yarn package --verbose
yarn run v1.22.22
warning package.json: No license field
$ plasmo package --verbose
šŸŸ” 0 | Running command: package
šŸŸ£ Plasmo v0.85.2
šŸ”“ The Browser Extension Framework
šŸ”µ INFO | Prepare to package the extension bundle...
šŸŸ” 1 | Creating Manifest Factory...
šŸŸ” 2 | Ensure exists: /Users/dp/work/extension/.plasmo
šŸŸ” 3 | /Users/dp/work/extension/assets/icon.png found, creating resized icons
šŸŸ” 4 | Creating static templates for popup
šŸŸ” 5 | Creating static templates for options
šŸŸ” 6 | Creating static templates for newtab
šŸŸ” 7 | Creating static templates for devtools
šŸŸ” 8 | Creating static templates for sidepanel

(...)
šŸŸ” 18 | { messageHandlerList: [], portHandlerList: [] }
šŸŸ” 19 | Creating BGSW entry
šŸŸ” 20 | Hash changed, updating manifest


šŸ”“ ERROR | EAGAIN
šŸŸ” 21 | Error: EAGAIN
at new Worker (node:internal/worker:291:19)
at wk (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:22:13)
at wrkr (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:893:12)
at astrmify (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:930:13)
at new AsyncDeflate (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:1086:9)
at new AsyncZipDeflate (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:1949:18)
at file:///Users/dp/work/extension/node_modules/plasmo/dist/index.js:166:10563
at new Promise (<anonymous>)
at Qr (file:///Users/dp/work/extension/node_modules/plasmo/dist/index.js:166:10341)
at async Zh (file:///Users/dp/work/extension/node_modules/plasmo/dist/index.js:166:11510)
šŸ”“ EXIT | This program will terminate in 3 seconds...
It then starts to use a lot of memory
52 Replies
dp
dpOPā€¢9mo ago
@lab @LoXatoR fyi
lab
labā€¢9mo ago
lab
labā€¢9mo ago
Some resource related issues?
dp
dpOPā€¢9mo ago
What is strange it is throwing there -- at new Worker (node:internal/worker:291:19) at wk (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:22:13) at wrkr (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:893:12) at astrmify (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:930:13) at new AsyncDeflate (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:1086:9) at new AsyncZipDeflate (file:///Users/dp/work/extension/node_modules/fflate/esm/index.mjs:1949:18) at file:///Users/dp/work/extension/node_modules/plasmo/dist/index.js:166:10563 at new Promise (<anonymous>) at Qr (file:///Users/dp/work/extension/node_modules/plasmo/dist/index.js:166:10341) at async Zh (file:///Users/dp/work/extension/node_modules/plasmo/dist/index.js:166:11510) AsyncZipDeflate
Arcane
Arcaneā€¢9mo ago
@dp has reached level 1. GG!
dp
dpOPā€¢9mo ago
What would you advise to debug @lab what makes this resource issue? I tried --verbose but nothing; We tried with a VM with 64GB or 128GB and it fails
lab
labā€¢9mo ago
Seems like simultaneous read/write at the same place or maybe resource unavailable? Actually yeah try running plasmo build then plasmo package Separately
dp
dpOPā€¢9mo ago
we already did this; I will add flag verbose; we're running this on github actions;
No description
dp
dpOPā€¢9mo ago
cf.
"build": "plasmo build",
"dev": "plasmo dev",
"format:write": "prettier . --write",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"type:check": "tsc --noEmit",
"package": "plasmo package",
"build": "plasmo build",
"dev": "plasmo dev",
"format:write": "prettier . --write",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"type:check": "tsc --noEmit",
"package": "plasmo package",
lab
labā€¢9mo ago
Try running them in 2 steps
dp
dpOPā€¢9mo ago
Ok will try after this attempt Ok will retry with two different steps --
# plasmo build
šŸŸ¢ DONE | Finished in 36524ms!
Done in 44.66s.
yarn run v1.22.22
warning package.json: No license field
# plasmo package
$ plasmo package --verbose
šŸŸ” 0 | Running command: package
šŸŸ£ Plasmo v0.84.1
šŸ”“ The Browser Extension Framework
šŸŸ  WARN | A new version of plasmo is available: v0.85.2
| Run "yarn add [email protected]" to update
šŸ”µ INFO | Prepare to package the extension bundle...
šŸŸ” 1 | Creating Manifest Factory...
šŸŸ” 2 | Ensure exists: /home/runner/work/extension/extension/.plasmo
šŸŸ” 3 | /home/runner/work/extension/extension/assets/icon.png found, creating resized icons
šŸŸ” 4 | Creating static templates for popup
(...)
šŸŸ” 14 | Parsed config: { matches: [ '<all_urls>' ], world: 'MAIN', run_at: 'document_start' }
šŸŸ” 15 | Adding content script: /home/runner/work/extension/extension/src/contents/inpage.ts
šŸŸ” 16 | Parsed config: { matches: [ '<all_urls>' ], all_frames: true }
šŸŸ” 17 | Adding content script: /home/runner/work/extension/extension/src/contents/worker.ts
šŸŸ” 18 | { messageHandlerList: [], portHandlerList: [] }
šŸŸ” 19 | Creating BGSW entry
šŸŸ” 20 | Hash changed, updating manifest
<--- Last few GCs --->
<--- JS stacktrace --->
FATAL ERROR: Committing semi space failed. Allocation failed - JavaScript heap out of memory
----- Native stack trace -----
<--- Last few GCs --->
<--- JS stacktrace --->
FATAL ERROR: Committing semi space failed. Allocation failed - JavaScript heap out of memory
<--- Last few GCs --->
<--- JS stacktrace --->
#
# Fatal javascript OOM in MemoryChunk allocation failed during deserialization.
#
<--- Last few GCs --->
<--- JS stacktrace --->
FATAL ERROR: Committing semi space failed. Allocation failed - JavaScript heap out of memory
<--- Last few GCs --->
<--- JS stacktrace --->
#
# Fatal javascript OOM in MemoryChunk allocation failed during deserialization.
#
# plasmo build
šŸŸ¢ DONE | Finished in 36524ms!
Done in 44.66s.
yarn run v1.22.22
warning package.json: No license field
# plasmo package
$ plasmo package --verbose
šŸŸ” 0 | Running command: package
šŸŸ£ Plasmo v0.84.1
šŸ”“ The Browser Extension Framework
šŸŸ  WARN | A new version of plasmo is available: v0.85.2
| Run "yarn add [email protected]" to update
šŸ”µ INFO | Prepare to package the extension bundle...
šŸŸ” 1 | Creating Manifest Factory...
šŸŸ” 2 | Ensure exists: /home/runner/work/extension/extension/.plasmo
šŸŸ” 3 | /home/runner/work/extension/extension/assets/icon.png found, creating resized icons
šŸŸ” 4 | Creating static templates for popup
(...)
šŸŸ” 14 | Parsed config: { matches: [ '<all_urls>' ], world: 'MAIN', run_at: 'document_start' }
šŸŸ” 15 | Adding content script: /home/runner/work/extension/extension/src/contents/inpage.ts
šŸŸ” 16 | Parsed config: { matches: [ '<all_urls>' ], all_frames: true }
šŸŸ” 17 | Adding content script: /home/runner/work/extension/extension/src/contents/worker.ts
šŸŸ” 18 | { messageHandlerList: [], portHandlerList: [] }
šŸŸ” 19 | Creating BGSW entry
šŸŸ” 20 | Hash changed, updating manifest
<--- Last few GCs --->
<--- JS stacktrace --->
FATAL ERROR: Committing semi space failed. Allocation failed - JavaScript heap out of memory
----- Native stack trace -----
<--- Last few GCs --->
<--- JS stacktrace --->
FATAL ERROR: Committing semi space failed. Allocation failed - JavaScript heap out of memory
<--- Last few GCs --->
<--- JS stacktrace --->
#
# Fatal javascript OOM in MemoryChunk allocation failed during deserialization.
#
<--- Last few GCs --->
<--- JS stacktrace --->
FATAL ERROR: Committing semi space failed. Allocation failed - JavaScript heap out of memory
<--- Last few GCs --->
<--- JS stacktrace --->
#
# Fatal javascript OOM in MemoryChunk allocation failed during deserialization.
#
as it failed here
lab
labā€¢9mo ago
That's an entirely diff error now :-? And it seems package is using v0.84.1 (which might contain some err btw, iirc, I downgraded some parcel stuffs bc it wasn't working correctly :d )
dp
dpOPā€¢9mo ago
I will bump to latest; (this is github actions runners; First log from my machine but it crashes/freezes) Yes it's not exiting and keep going on Github Runner -- Need to stop the job manually
šŸŸ” 19 | Creating BGSW entry
šŸŸ” 20 | Hash changed, updating manifest
#
# Fatal error in , line 0
# unreachable code
#
#
#
#FailureMessage Object: 0x7c4f096fdcc0
----- Native stack trace -----
<--- Last few GCs --->
<--- JS stacktrace --->
#
# Fatal javascript OOM in MemoryChunk allocation failed during deserialization.
#
<--- Last few GCs --->
<--- JS stacktrace --->
FATAL ERROR: Committing semi space failed. Allocation failed - JavaScript heap out of memory
----- Native stack trace -----
<--- Last few GCs --->
<--- JS stacktrace --->
#
# Fatal javascript OOM in MemoryChunk allocation failed during deserialization.
#
šŸŸ” 19 | Creating BGSW entry
šŸŸ” 20 | Hash changed, updating manifest
#
# Fatal error in , line 0
# unreachable code
#
#
#
#FailureMessage Object: 0x7c4f096fdcc0
----- Native stack trace -----
<--- Last few GCs --->
<--- JS stacktrace --->
#
# Fatal javascript OOM in MemoryChunk allocation failed during deserialization.
#
<--- Last few GCs --->
<--- JS stacktrace --->
FATAL ERROR: Committing semi space failed. Allocation failed - JavaScript heap out of memory
----- Native stack trace -----
<--- Last few GCs --->
<--- JS stacktrace --->
#
# Fatal javascript OOM in MemoryChunk allocation failed during deserialization.
#
I am running a new build with plasmo 0.85.2 now
lab
labā€¢9mo ago
hmm, fyi the package command is basically a simple zip implementation that stream assets/files into the right place
lab
labā€¢9mo ago
GitHub
plasmo/cli/plasmo/src/commands/package.ts at main Ā· PlasmoHQ/plasmo
šŸ§© The Browser Extension Framework. Contribute to PlasmoHQ/plasmo development by creating an account on GitHub.
lab
labā€¢9mo ago
You can also just try using the zip command over the build directory
dp
dpOPā€¢9mo ago
Ha nice; let me see
Arcane
Arcaneā€¢9mo ago
@dp has reached level 2. GG!
lab
labā€¢9mo ago
I've seen it works with a 30MB bundle so not sure what's going on there, esp when build worked if you can debug and take a look at the package source, feel free to PR!
dp
dpOPā€¢9mo ago
Ok it seems our build dir is 402mb; compressed manually with zip makes it 114mb. I will look why this is aas big as that It seems the build node_modules directory include typescript, parcel... and lot of things (sass, react-dev-tools) ; probably we need to move to dev dependencies
dp
dpOPā€¢9mo ago
I see the plasmo build CLI just call parcel -- but we can't pass much options to parcel such as yarn build --reporter @parcel/reporter-bundle-analyzer https://github.com/PlasmoHQ/plasmo/blob/main/cli/plasmo/src/commands/build.ts#L38 WOuld it be possible to pass parcel functions?
GitHub
plasmo/cli/plasmo/src/commands/build.ts at main Ā· PlasmoHQ/plasmo
šŸ§© The Browser Extension Framework. Contribute to PlasmoHQ/plasmo development by creating an account on GitHub.
dp
dpOPā€¢9mo ago
If you'd like to analyze your bundle, you can use the --bundle-buddy flag, combined with --source-maps to generate a Bundle Buddy Just read it ; nice Ok we just zip it using zip and it worked
abhishekjha
abhishekjhaā€¢9mo ago
We are also facing issue using manual api to upload the zip & sign it. We are able to successfully upload the zip but during sign call it's timing out. Getting below error. An error occurred with your deployment FUNCTION_INVOCATION_TIMEOUT
dp
dpOPā€¢9mo ago
@lab
lab
labā€¢9mo ago
@abhishekjha how big is your extension BTW? the zipped bundle Extended the timeout so you should be able to try again for longer
dp
dpOPā€¢8mo ago
100mb I believe But we'l try to reduce it
abhishekjha
abhishekjhaā€¢8mo ago
@lab Still getting timeout
lab
labā€¢8mo ago
I suggest you reduce the size of your extension - 100mb is too high and I don't think we should support that. Yeah it seems your extension was too large for us to generate a signed bundle for
dp
dpOPā€¢8mo ago
Yes it seems our build was keeping node_modules and creating some nested node_modules that was enlarging the directory before zipping.
lab
labā€¢8mo ago
I think you should try to exclude them and bundle those assets extension doesn't play well with dynamic scripts loading
LoXatoR
LoXatoRā€¢8mo ago
Also, it takes around 30 - 45s on average for plasmo dev to recompile and if I stop the dev server and run it again, it keeps re-creating the build and placing it in the existing build folder, thus creating multiple levels of nesting as seen in the pic
No description
lab
labā€¢8mo ago
That should not be the case, unless there's some crazy introspection/recursion dependency I'd strip out and see which import is messing it up for you
abhishekjha
abhishekjhaā€¢5mo ago
@lab We started getting 500 error for sign api.
Arcane
Arcaneā€¢5mo ago
@abhishekjha has reached level 1. GG!
lab
labā€¢5mo ago
I saw a couple of 500 reported - it seems the key were incorrect (or that it was not able to resolve to your extension ID)
abhishekjha
abhishekjhaā€¢5mo ago
I downloaded a new private key & tried to sign it But got same error
lab
labā€¢5mo ago
did you change anything in your code?
abhishekjha
abhishekjhaā€¢5mo ago
Nope. Same pipeline were working fine so far but since few days we are getting 500 error
lab
labā€¢5mo ago
What's the extension ID?
abhishekjha
abhishekjhaā€¢5mo ago
Just now I retried for eanafdjekpnbkamplmoinkeojkjinakn I got 500 error
lab
labā€¢5mo ago
Hmm, seems like your zip was too large it's over 100MB
abhishekjha
abhishekjhaā€¢5mo ago
It works from UI but not from api Can we increase the limit ? @lab Can we increaes the limit please ?
lab
labā€¢5mo ago
Appear it's not the file size that's the issue, but rather the signing operation that our backend is doing took way longer than the allowed time for the serverless function to execute... Tho I think it's really both
abhishekjha
abhishekjhaā€¢5mo ago
Any ETA of the fix ?
lab
labā€¢5mo ago
Just pushed a limit bump to the memory limit for the signing function, should be up soon
abhishekjha
abhishekjhaā€¢5mo ago
Okay
Arcane
Arcaneā€¢5mo ago
@abhishekjha has reached level 2. GG!
lab
labā€¢5mo ago
if the signing operation cannot fit within the 3GB box, you will need to upload manually
abhishekjha
abhishekjhaā€¢5mo ago
@lab Do you think we should also increase the timeout of lambda function ? I suspect lambda function might be timing out
lab
labā€¢5mo ago
It's at max rn for us (300s)
abhishekjha
abhishekjhaā€¢5mo ago
ohhh
Want results from more Discord servers?
Add your server