7

I'm using VS Code's remote-ssh to connect to a Linux server.

The output of top is shown below, with the zombie process's command as “node”:

output of top

How can I solve this problem?

Gino Mempin
  • 25,369
  • 29
  • 96
  • 135
QXian
  • 71
  • 1

1 Answers1

0

I see the same problem. In my experience it stems from workspace searches (ctrl + shift + f) and file searches (ctrl + p). Ever since I started ending searches by clicking the 'clear search results button':

clear search results button

, results have been better. As a backup, using 'kill -12 'pid'' (pid as seen in top process table above) to close node processes regularly is the only way to not choke the system.

If I come across a better way to stop VSCode from spawning these processes, I will update this answer.

Nabeel
  • 47
  • 4