zoukankan      html  css  js  c++  java
  • [硬件知识]OP(Over-provisioning)预留空间

    SSD上的OP指的是用户不可操作的容量,大小为实际容量减去用户可用容量,OP区域一般被用于优化操作如:WL,GC和坏块映射等。
    OP一般分三层(见下图)。第一层容量固定为SSD标称容量的7.37%,这是因为标称容量采用千进制为单位,而NAND颗粒容量单位为1024进制,两者正好相差约7.37%。这部分空间被默认用于作OP。第二层OP是否存在及容量大小取决于厂商设置。第三层OP是用户在日常使用中可以分配的,像Fusion-IO公司还给其用户提供工具让他们自行调节大小以满足不同的耐用度及性能要求,一般用户也可以自己在初次分区的时候,不把所有的SSD容量都分满来达到相同目的,此处有一点要注意,若非首次分区就留出空间,必须要先进行全盘擦除(Secure Erase),否则没有效果。
    虽然OP会减少SSD的可用容量,但有减少WA、提高寿命、性能的正面作用。请看下图:两个相同的64G SSD,左边的分区50G,右边的全部容量分区。格式化后容量分别为:46G和59G左右。
    我们知道在操作系统下,要写入共59G的数据时,左边的盘必须删除13G的'无效'数据才行。右边的盘不需擦除就能写入所有59G数据,由SSD映射表的操作方式可知,删除后继续写入的数据在物理上会继续写入整个盘(写入OP1和OP2),在LBA上会覆盖被删除数据的地址。也就是说,同样写入59G数据,左边的盘已经包含了13G"无效"数据了。(那些被重映射到预留空间的数据,原地址数据就是"无效"、"过期"的)。所以说图中SSD里LBA上数据"有效"的机会比右边要少,因为LBA容量小(分区小),所以在做垃圾回收处理时,需要复制的"有效"数据也少了,自然效率就提高了。
    一般来说,建议在不支持Trim或对SSD的性能有较高要求的时候,如数据库等类的应用,增加一定比例的第三层OP容量(此空间需要先做HDD ERASE,保证没有被使用过),可以很好的起到保持速度,提高寿命的作用。(如必须用SSD组建RAID时,强烈建议留部分OP容量以弥补没有Trim产生的影响。)
     
     

    While solid-state drives (SSDs) are often similar to mechanical Hard Disk Drives (HDDs) in physical dimensions (e.g., height, width and length) and external interface (e.g., SATA or SAS interface), the internal low level operation and components of an SSD differ vastly from the spinning magnetic platter design of an HDD.

    After an SSD is assembled, the SSD manufacturer can reserve an additional percentage of the total drive capacity for Over-Provisioning (OP) during firmware programming. Over-provisioning improves performance and often increases the endurance of the SSD, helping the drive last longer due to the SSD Controller having more Flash NAND storage available to alleviate NAND Flash wear over its useful life.

    To calculate the over-provisioned (OP) percentage of an SSD, the formula in Figure 1 can be used.

    Percentage Over-provisioning =

    Physical Capacity - User Capacity


    User Capacity

    Figure 1. Over-provisioning percentage formula.

    It is common to see 7 percent overprovisioning present in many SSDs. See Figure 2 for a breakdown of physical capacity present in an SSD versus available user capacity after overprovisioning.

    Physical capacityUser capacity% Over-ProvisioningApplication Class
    64 GB 60 GB 7% Read Intensive
    96 GB 90 GB 7% Read Intensive
    128 GB 120 GB 7% Read Intensive
    128 GB 100 GB 28% More Write Intensive
    256 GB 240 GB 7% Read Intensive
    256 GB 200 GB 28% More Write Intensive
    512 GB 480 GB 7% Read Intensive
    512 GB 400GB 28% More Write Intensive
    1024GB 960GB 7% Read Intensive
    1024GB 800GB 28% More Write Intensive
    2048GB 1800GB 14% Read Intensive
    2048GB 1600GB 28% More Write Intensive

    Figure 2 Over-provisioning based on capacity and application class

    转自:

    https://www.kingston.com/us/ssd/overprovisioning 

    http://blog.csdn.net/guojing3625/article/details/10136551 

  • 相关阅读:
    netcat命令
    CSS 中背景图片定位方法
    Eclipse 安装svn插件及使用
    【Mysql】数据库为啥会出现_encrypt和_warning成对的表
    【Mysql异常】[HY000][1030] Got error 28 from storage engine
    【Nginx】使用certbot安装免费https证书使Nginx支持Https请求
    【Nginx】将http升级到https并且同时支持http和https两种请求
    【异常】org.eclipse.jgit.api.errors.TransportException: git@xxx.xxx.xxx/base-config-center.git: channel is not opened.
    【Spring Boot】Spring Boot之利用Logstash将日志转换成以JSON的格式存储和输出
    【Spring Cloud】Spring Cloud之Zipkin server搭建以及RabbitMQ收集,分布式服务跟踪(3)
  • 原文地址:https://www.cnblogs.com/sunss/p/7874932.html
Copyright © 2011-2022 走看看