0

So I've been trying to diagnose an issue with my Ubuntu Server VM running super slow. I run Ubuntu Server 18.04LTS with docker installed. I've been using netdata to try and monitor system stats and it's showing my value for iowait as about 60% constantly.
I feel like it could be because I have all my docker config and data directories located on an SMB share.
I also use transmission and have around 500 torrents on it. Could this be the issue? (In amongst a bunch of other containers)

Not sure how to go about fixing it though.

Any ideas?

Gryu
  • 8,002
  • 9
  • 37
  • 53

1 Answers1

2

Yes, SMB shares with lots of active usage can definitely be the source of large iowait, but not necessarily. To debug, I suggest you install the 'iotop' package, which is like 'top' but shows IO processes.

sudo apt install iotop

Then after installing, run:

iotop

You'll see a running list of which processes are using IO.

Linux Pro
  • 359