mkfs.ext4 está demorando horas para ser concluído em 4 TB RAID 5

4

Estou executando o mkfs.ext4 em cima de LVM em um RAID 5 , e está levando horas para ser concluído. É uma configuração de 3 TB, quatro discos, e estou apenas fazendo:

mkfs.ext4 /dev/md0

Meu tamanho e largura da faixa parecem OK. Como posso acelerar isso?

    
por Ricardo 08.05.2011 / 03:42

1 resposta

6

mkfs.ext4 -O uninit_bg = 1 -E lazy_itable_init = 1

forçará as partes demoradas da inicialização em segundo plano.

lazy_itable_init [= < 0 para desativar, 1 para ativar >]

If enabled and the uninit_bg feature is enabled, the inode table will not be fully initialized by mke2fs. This speeds up filesystem initialization noticeably, but it requires the kernel to finish initializing the filesystem in the background when the filesystem is first mounted. If the option value is omitted, it defaults to 1 to enable lazy inode table initialization.

uninit_bg

Create a filesystem without initializing all of the block groups. This feature also enables checksums and highest-inode-used statistics in each blockgroup. This feature can speed up filesystem creation time noticeably (if lazy_itable_init is enabled), and can also reduce e2fsck time dramatically. It is only supported by the ext4 filesystem in recent Linux kernels.

    
por 08.05.2011 / 09:05

Tags