From mboxrd@z Thu Jan 1 00:00:00 1970 From: Phil Turmel Subject: Re: md RAID with enterprise-class SATA or SAS drives Date: Thu, 10 May 2012 14:23:43 -0400 Message-ID: <4FAC07AF.7000908@turmel.org> References: <4FAAE8F1.8000600@pocock.com.au> <4FABC7C6.4030107@turmel.org> <4FABE724.40103@turmel.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: Sender: linux-raid-owner@vger.kernel.org To: Keith Keller Cc: linux-raid@vger.kernel.org List-Id: linux-raid.ids On 05/10/2012 01:53 PM, Keith Keller wrote: > On 2012-05-10, Phil Turmel wrote: >> >> Frequent array checks are not optional, if you want flush out any UREs >> in the making, and maximize your odds of successfully rebuilding after >> a drive replacement. If you are running RAID6 or a triple mirror, with >> frequent checks, you are very safe. > > How frequent do people define as "frequent"? I typically do monthly > checks, but perhaps I should be doing them weekly. I do them weekly... the following is called from my crontab: #!/bin/bash # # Weekly Cron Job to initiate RAID scan/repair cycles for x in /sys/block/md*/md/sync_action ; do echo check >$x done # Process occurs in background kernel tasks