andywer / andywer/threads.js

Node 14.5 - process does not exit after all Threads terminated

Abierto
#345 0 comentarios 0 reacciones 0 asignados Ver en GitHub
Lenguaje dominante
TypeScript
Estrellas
3.5k
Forks
173
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

Hi,

I found this library due to good wrapper around worker_threads which makes it easy to work with TS code and I am grateful for this :)

Anyway, I have some strange issue which I'd like to solve:
```typescript
const workers: FunctionThread[] = [];

for (const chunk of chunks) {
const worker = await spawn(new Worker("./coordinatorWorker"));
workers.push(worker);
worker(chunk);
}

await wait(1000);

await Promise.all(workers.map(Thread.terminate));
```

I would expect to process to finish, but it hangs with open handles, however it responds to ctrl+C.

I found 2 issues relating to that, but they were using a wrapper for old Node versions, so it was different.

Guía de contribución

No hay ninguna guía de contribución indexada para este repositorio

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.