zoukankan      html  css  js  c++  java
  • 服务器主机上RAID Card的Write Caching Policy

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

     image

    那么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

    http://www.cisco.com/en/US/docs/unified_computing/ucs/c/sw/gui/config/guide/1.5/b_Cisco_UCS_C-series_GUI_Configuration_Guide.151_chapter_01001.html

    LSI

    http://wiki.mikejung.biz/LSI#LSI_Write_Caching_Configuration

     

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

  • 相关阅读:
    算法与数据结构基础
    算法与数据结构基础
    算法与数据结构基础
    算法与数据结构基础
    算法与数据结构基础
    算法与数据结构基础
    最佳实践 根据状态操作,这样能避免吃掉异常
    最佳实践 状态设计
    Android HTTPS如何10分钟实现自签名SSL证书
    马桶选购
  • 原文地址:https://www.cnblogs.com/awpatp/p/3798908.html
Copyright © 2011-2022 走看看