8

A headless Linux NFS fileserver has been running slow for the last couple days (based on subjective reports from users). I checked journalctl did not see any relevant errors.

However, when I connected a monitor, I was greeted by a screen full of these errors:

failed command: WRITE FPDMA QUEUED

Here's a photo:

enter image description here

What are some suggested next steps? Should I just replace the disk?

MountainX
  • 701
  • 3
  • 12
  • 25

2 Answers2

12

Only one disk is having issues, according to what is visible here. But it's not obvious whether it's the drive, or the cable, or the controller.

I would first reboot, to reset the hardware. It could just be that the controller was temporarily confused and literally turning it off and on again would help.

If the error comes back after rebooting, then I would plug that drive into a different SATA port, and if necessary plug some other drive into that port. If the error is still on the same port, then the problem is with the controller.

But if the error "moves" to the new port, then it's either the cable or the drive. At this point I would replace the SATA cable. If the error goes away, then it was a bad cable. If you still have the error, then it's the drive.

Michael Hampton
  • 244,070
  • 43
  • 506
  • 972
5

Another thing you can try (which works remotely) is to run smartctl -a to see if the drive is reporting any errors, and perhaps smartctl -t short to run a self-test on it.

In my case it revealed that the WRITE FPDMA QUEUED failures were due to an ICRC (interface CRC) error, which means the data was corrupted between the drive and the controller, so the disk itself is ok and it's either the SATA cable, or the circuitry at either end that the SATA cable plugs into.

While I'm no expert, presumably in this case the command was retried and eventually got through the SATA cable without being corrupted, resulting in a functioning system but with a very slow disk due to all the retries.

Malvineous
  • 1,095
  • 11
  • 28
  • Could you elaborate on what part indicated a CRC error? It's not clear from the output. Also, was it an HDD or SSD? – jcollum Sep 06 '21 at 19:21
  • @jcollum I'm afraid I don't recall but the `smartctl -a` output came back with the word "ICRC" in many of the error messages which I looked up to get my answer. – Malvineous Sep 08 '21 at 02:31
  • 1
    @jcollum See "UltraDMA CRC Error Count" in [Self-Monitoring, Analysis and Reporting Technology - Wikipedia](https://en.wikipedia.org/wiki/Self-Monitoring,_Analysis_and_Reporting_Technology). It showed up under `UDMA_CRC_Error_Count` for me. – davidvandebunte Jan 06 '23 at 21:05