Compatibility with worker threads
See original GitHub issueIs pkg compatible with Worker threads?
I’m trying to package a simple app that uses Worker threads with pkg and it just freezes. And if I add web server (e.g. fastify) - it seems like it tries to spawn it over and over again instead of running actual worker.
Here’s a repo with minimal app that reproduces this behavior: https://github.com/yamalight/pkg-worker-fastify-issue
If you run it as-is in Node - it works perfectly fine.
If you package it and run the resulting binary, it’ll go crazy with Error: listen EADDRINUSE: address already in use 0.0.0.0:8080
even though fastify is initialized only once.
If you remove fastify and repackage it - you’ll only see empty output and it’ll never finish.
Any ideas why that might happen and how to fix this?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:10
- Comments:6
Top Results From Across the Web
Compatibility with worker threads #716 - vercel/pkg - GitHub
Is pkg compatible with Worker threads? I'm trying to package a simple app that uses Worker threads with pkg and it just freezes....
Read more >Worker threads | Node.js v19.3.0 Documentation
Workers (threads) are useful for performing CPU-intensive JavaScript operations. ... in a way which is compatible with the HTML structured clone algorithm.
Read more >Node.js multithreading with worker threads series - Snyk
Although Node.js doesn't offer real multi-threading, you can create something similar with the worker threads module.
Read more >Configure the max worker threads Server Configuration Option
The max worker threads option configures the number of worker threads that are available SQL Server-wide to process query requests, login, ...
Read more >Using Web Workers - Web APIs - MDN Web Docs
The worker thread can perform tasks without interfering with the user interface. In addition, they can perform I/O using XMLHttpRequest ( ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks for reporting back. Closing as fixed
@yamalight I have a project similar to this which I am having issues with and am hoping you may know the answer.
@GCN0185 MINGW64 /c/git/SquirrelViewData (master) $ pkg index.js
pkg@5.5.2 Targets not specified. Assuming: node16-linux-x64, node16-macos-x64, node16-win-x64
@GCN0185 MINGW64 /c/git/SquirrelViewData (master) $ node index.js PRAGMA journal_mode = WAL Connection to local database has been established successfully. Server ready at http://localhost:8454/ http://192.168.10.47:8454
@GCN0185 MINGW64 /c/git/SquirrelViewData (master) $ ./index-win.exe PRAGMA journal_mode = WAL Connection to local database has been established successfully. Server ready at http://localhost:8454/ http://192.168.10.47:8454 [worker eval]:1 [native code] ^^^^
SyntaxError: Unexpected identifier at new Script (node:vm:101:7) at createScript (node:vm:259:10) at Object.runInThisContext (node:vm:307:10) at node:internal/process/execution:75:19 at [worker eval]-wrapper:6:22 at evalScript (node:internal/process/execution:74:60) at MessagePort. (node:internal/main/worker_thread:176:7) at MessagePort.[nodejs.internal.kHybridDispatch] (node:internal/event_target:562:20) at MessagePort.exports.emitMessage (node:internal/per_context/messageport:23:28) worker exited with code 1 [worker eval]:1 [native code] `
I believe pkg is having trouble finding the module I require from inside the worker which is why it gets stuck.
module.exports = WorkerThread = () => { const { parentPort } = require('worker_threads'); const db = require('better-sqlite3')('./store.sqlite', { verbose: console.log });
The error will go away is I comment out the require(‘better-sqlite3’), the same thing will occur if I try include any of the node_modules.