We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The NVMe disks in snap-03 are using 512 sectors instead of 4096 byte sectors. The sector size should likely be changed if boosts performance.
LBA Format 0 : Metadata Size: 0 bytes - Data Size: 512 bytes - Relative Performance: 0x2 Good (in use) LBA Format 1 : Metadata Size: 8 bytes - Data Size: 512 bytes - Relative Performance: 0x2 Good LBA Format 2 : Metadata Size: 0 bytes - Data Size: 4096 bytes - Relative Performance: 0x2 Good LBA Format 3 : Metadata Size: 8 bytes - Data Size: 4096 bytes - Relative Performance: 0x2 Good LBA Format 4 : Metadata Size: 64 bytes - Data Size: 4096 bytes - Relative Performance: 0x2 Good
Changing the disk sector size formats the disk, the sector size needs to be carefully coordinated with mdadm.
Outline steps:
mdadm --fail
mdadm --remove
nvme format --lbaf=2
mdadm --add
(repeat disk by disk across all disks)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The NVMe disks in snap-03 are using 512 sectors instead of 4096 byte sectors. The sector size should likely be changed if boosts performance.
Changing the disk sector size formats the disk, the sector size needs to be carefully coordinated with mdadm.
Outline steps:
mdadm --fail
mdadm --remove
nvme format --lbaf=2
mdadm --add
(repeat disk by disk across all disks)
The text was updated successfully, but these errors were encountered: