Optimal RAID setup for SQL server

后端 未结 10 1173
长发绾君心
长发绾君心 2021-02-02 15:43

We have an SQL 2005 database backend for our website, currently about 10GB in size. There are a lot more reads than writes, though I don\'t have the exact statistics.

We

10条回答
  •  爱一瞬间的悲伤
    2021-02-02 16:29

    RAID 5 is good if you use a hardware controller with a decent amount of battery-backed cache RAM. Select a chunk size and configure the DB so that the stripe size (data disks * chunk size) is equal to DB write size. Make sure your data partition [is aligned / is a multiple of] the stripe size.

    Otherwise, RAID 1+0 is always a good choice for DB servers.

提交回复
热议问题