博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
服务器主机上RAID Card的Write Caching Policy
阅读量:5813 次
发布时间:2019-06-18

本文共 1515 字,大约阅读时间需要 5 分钟。

在Cisco Server的DRAC中, 创建virtual drive时, 会看到下面的选项.

 

那么Write back, write through, write back bad BBU之间的区别是什么呢?

 

Cisco官网解释如下:

=================

Write through

Data is written through the cache and to the physical drives. Performance is improved, because subsequent reads of that data can be satisfied from the cache.

 

Write back

Data is stored in the cache, and is only written to the physical drives when space in the cache is needed. Virtual drives requesting this policy fall back to Write Through caching when the BBU cannot guarantee the safety of the cache in the event of a power failure.

 

Write back bad BBU

With this policy, write caching remains Write Back even if the battery backup unit is defective or discharged.

 

Write back good BBU

LSI's term is "Write Back"

 

简单点说, write back bad BBU性能好, 但不安全, 因为BBU坏了, 一旦断点, 就会有cache里的没被写到盘上的数据丢失.

write through安全, 但写性能不好, 因为要cache和盘上都要写, 写到盘上好了才算是写好了, 读性能提高因为刚写的数据在cache里可以读到, 然并卵.

write back性能好, 也安全, 因为bbu坏了, 他就自动变为write through.

 

注意, 对于SSD(固态硬盘)来说, write back是不合适的, 因为SSD的写本来就不慢, 用write back的话, 就是说cache要写一次, 后面SSD上还要写一次.

 

做个顾名思义的版本吧:

Write back (to disk from cache when needed)

Write through (cache directly to disk and make a copy to cache)

Write back (to disk from cache even when) bad BBU (happens)

Write back (to disk from cache only when)good BBU (is there)

 

参考资料

========================

Cisco UCS C-Series Servers Integrated Management Controller GUI Configuration Guide, Release 1.5

LSI

 

注: 之前不仔细, 弄串了write through和write back的顺序, 不过好在列出了原文, 看了觉得混乱的应该会看看原文的吧. 希望大家原谅.

转载地址:http://yivbx.baihongyu.com/

你可能感兴趣的文章
iOS sqlite3(数据库)
查看>>
粤出"飞龙",打造新制造广东样本
查看>>
编玩边学获数千万元A轮融资,投资方为君联资本
查看>>
蓝图(Blueprint)详解
查看>>
Spark之SQL解析(源码阅读十)
查看>>
Android图片添加水印图片并把图片保存到文件存储
查看>>
比特币系统采用的公钥密码学方案和ECDSA签名算法介绍——第二部分:代码实现(C语言)...
查看>>
海贼王十大悲催人物
查看>>
BigDecimal 舍入模式(Rounding mode)介绍
查看>>
开源 免费 java CMS - FreeCMS1.2-标签 infoSign
查看>>
开源 免费 java CMS - FreeCMS1.9 移动APP生成栏目列表数据
查看>>
git reset 三种用法总结
查看>>
hdfs笔记
查看>>
虚拟机新增加硬盘,不用重启读到新加的硬盘
查看>>
Java IO流详尽解析
查看>>
邮件服务系列之四基于虚拟用户的虚拟域的邮件系统(安装courier-authlib以及部分配置方法)...
查看>>
Linux VSFTP服务器
查看>>
DHCP中继数据包互联网周游记
查看>>
Squid 反向代理服务器配置
查看>>
Java I/O操作
查看>>