BTRFS読み取りエラーはどのような影響を与えますか?

BTRFS読み取りエラーはどのような影響を与えますか?

次の読み取りエラーが表示されます。

# btrfs device stats /mnt/data
[/dev/sda].write_io_errs    0
[/dev/sda].read_io_errs     0
[/dev/sda].flush_io_errs    0
[/dev/sda].corruption_errs  0
[/dev/sda].generation_errs  0
[/dev/sdd].write_io_errs    0
[/dev/sdd].read_io_errs     53
[/dev/sdd].flush_io_errs    0
[/dev/sdd].corruption_errs  0
[/dev/sdd].generation_errs  0
[/dev/sdc].write_io_errs    0
[/dev/sdc].read_io_errs     0
[/dev/sdc].flush_io_errs    0
[/dev/sdc].corruption_errs  0
[/dev/sdc].generation_errs  0

これはどういう意味ですか?これは読み出しエラーに過ぎないので、RAMのビット反転によってチェックサムの不一致が発生する可能性がありますか?それとも永久データが破損していることを意味できますか?

ベストアンサー1

報告man 8 btrfs-device:

   write_io_errs
       Failed writes to the block devices, means that the layers beneath
       the filesystem were not able to satisfy the write request.

   read_io_errors
       Read request analogy to write_io_errs.

これに基づいて、デバイスに問題がある可能性があるという意味だと思います。

おすすめ記事