Storage Pool的起源

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

Some time ago, EMC introduced the concept of Virtual Provisioning and Storage Pools in their Clariion line of arrays. The main idea for doing this is to make management for the storage admin simple. The traditional method of managing storage is to take an array full of disks, create discrete RAID groups with a set of disks, and then carve LUNs out of those RAID groups and assign them to hosts. An array could have dozens to hundreds of RAID groups depending on its size, and often times this would result in stranded islands of storage in these RAID groups. Some of this could be alleviated by properly planning the layout of the storage array to avoid the wasted space, but the problem is that for most customers, their storage requirements change and they very rarely can plan how to lay out an entire array on day 1. There was a need for flexible and easy storage management, and hence the concept of Storage Pools was born.

Storage pools, as the name implies, allows the storage admin to create “pools” of storage. You could even in some cases, create one big pool with all of the disks in the array which could greatly simplify the management. No more stranded space, no more deep architectural design into RAID group size, layout, etc. Along with this comes a complimentary technology called FAST VP, which allows you to place multiple disk-tiers into a storage pool, and allow the array to move the data blocks to the appropriate tier as needed based on performance needs. Simply assign storage from this pool as needed, in a dynamic, flexible fashion, and let the array handle the rest via auto tiering. Sounds great right? Well, that’s what the marketing says anyway.

 

传统RAID Group的架构与Storage Pool

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

First let’s take a brief look at the difference between the traditional RAID group based architecture and Storage Pools.

On the left is the traditional RAID group based architecture. You assign disks to RAID groups, and then carve a LUN/LUNs out of that RAID group and assign to hosts. You would have multiple RAID groups throughout the array based on protection level, capacity, performance and so on. On the right is the pool based approach. This example is the homogenous pool to keep things simple. You simply assign disks to the pool and assign LUNs from that pool. When you need more capacity, you just expand the pool. Contrast this with having to build another RAID group, assigning LUNs from that RAID group while trying to fill the existing ones with proper LUN sizes. Management, and complexity is greatly reduced. But what are the trade offs and design considerations?

 

Storage Pool深入

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

Let’s take a deeper look at a storage pool…

Depicted in the above figure is what a storage pool looks like under the covers. In this example, it is a RAID5 protected storage pool created with 5 disks. What FLARE does under the covers when you create this 5 disk storage pool is to create a Private RAID5 4+1 raid group. From there it will create 10 Private LUNs of equal size. In my test case, I was using 143GB (133GB usable) disks, and the array created 10 Private LUNs of size 53.5GB giving me a pool size of ~530GB. This is what you would expect from a RAID5 4+1 RG (133*4 = 532GB).

When you create a LUN from this pool and assign it to the host, the I/O is processed in a different manner than in a traditional FLARE LUN. In a traditional (ignoring Meta-LUNs for simplicity) FLARE LUN, the I/O is going to one LUN on the array which is then written directly to a set of disks in its RAID group.

However, as new host writes come into a Pool LUN, space is allocated in 1GB slices. For Thick LUNs, this space is contiguous and completely pre-allocated. So, if one were to create a 10GB Thick Pool LUN, there would be 1GB slices allocated across each of the 10 Private LUNs for a total of 10x 1GB slices. As host writes comes into the Pool LUN, the LBA (Local Block Address) corresponding with the host write has a 1:1 relationship with the Pool LUN; meaning, LBA corresponding to 0-1GB on the host  would land on Private LUN0 since it contains the first 1GB slice; LBA 1-2GB writes on Private LUN1, LBA 2-3GB writes Private LUN3…. and so on as shown below:

These LUNs are all hitting the same Private RAID group underneath and hence the same disks. I assume EMC creates these multiple Private LUNs for device queuing/performance related reasons.

 

Caveat/Design Consideration #1

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

One very important aspect to understand is EMC’s recommendation to create R5 based pools in multiples of 5 disks. Again this is a VERY important thing to note because it could lead to unexpected results if you don’t fully understand this, and proceed to create pools from non-5disk multiples. The pool algorithm in FLARE tries to create the Private RAID5 groups for as 4+1 whenever possible. As an example, if you ignored the 5 disk multiple recommendation, and created a pool with 14 disks, you will NOT get the capacity you might expect. FLARE will create 2x 4+1 R5 Private RGs, and 1x 3+1 Private RG, NOT a single 13+1 Private RG that you may expect. So you would end up capacity which is lower than you are expecting.

In my case, using 143GB disks (133GB usable), with a 14disk R5 pool I would get (4*133)+(4*133)+(3*133)=~1460GB. Not the expected (13*133)=1730GB. A difference of almost 300GB; quite significant! The best option in this case is to add another drive and create a 15disk R5 pool, achieving 3x 4+1 RGs under the covers. This is important to consider when configuring the array as you could end up with one irate customer if multiple 300GB slices go missing over the span of the array!

Next, let’s take a look at some aspects of I/O performance, and some things to consider when expanding the pool.

With a pool composed of 5 disks, things are pretty simple to understand because there is 1x 4+1 Private RG underneath handling the I/O requests, but what happens when we expand the pool? Keeping in mind we need to expand this pool by a multiple of 5, lets add another 5 disks to it, bringing the total capacity to 530*2 = ~1060GB. Underneath the covers, the pool now looks like this:

After adding the 2nd set of 5disks, FLARE has created another 4+1 Private RAID group and 10 more Private LUNs from that RAID group. The Private LUNs currently have no data on them.

 

Design Consideration / Caveat #2

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

Note that when the Storage Pool is expanded, the existing data is NOT re-striped across the new disks. Reads to the original Pool LUN will still happen only across the first 5disks, and so will writes to the existing 10GBs LBAs that were previously written to. So do not expect a sudden increase in performance on the existing LUN by expanding the pool with additional disks.

In my testing, I brought my Pool LUN into VMware and put a single VM on it, and then expanded the pool, and put another VM on it. Before putting the 2nd VM on the LUN, the data layout looked exactly as depicted above. There was data spread across the Private LUNs associated with the first Private RAID group, and no data on the Private LUNs of the second RAID group. When I cloned another VM onto the LUN, this is what it looked like:

VM1s data is still spread across the first Private RG and first 10 Private LUNs as expected, but VM2s data is spread across BOTH Private RAID groups and all 20 Private LUNs! Think about that for a second: 2VMs, on the SAME VMFS, on the SAME Storage Pool, one get the I/O of 5 disk striping, and the other gets the I/O of 10disk striping; talk about non-deterministic performance! That second VM will get awesome performance as it is wide striped across 10disks, but the first VM is still using the only first 5 disks. These are both 100GB VMs (in my testing), so all the slices aren’t depicted, but it still illustrates the point. The actual allocation would show 100 slices (1slice = 1GB as previously mentioned) allocated across Private LUNs 0-9 for VM1, and 50 slices across Private LUNs 0-9 and 50 slices across Private LUNs 10-19 for VM2 as the overall slice distribution. If I keep placing VMs on this Pool LUN, they will continue to get 10disk striping, UNTIL the first Private RG gets full, at which point any subsequent VMs will get only 5 disk striping.

Now this imbalance occurred because there was still free space in the first RG, so the algorithm allocated slices there for the 2nd VM because it does show in a round robin fashion. If the pool was at capacity before being expanded, we would likely get something like this (not tested, extrapolating based on previous behavior):

In this diagram, the blue simply represents “other” data filling the pool. If the pool was at capacity, and then expanded, and then my 2nd VM placed on it, the 2nd VM could not get slices from the first Private RAID Group (because its full) so its slices would come ONLY from the 2nd Private RAID group, spreading its data across only 5 disks, instead of 10 like last time. Imagine a situation where a VM was created before the first Private RG filled up. Some of the VMs I/O could be striped across 10disks, and the rest across 5 disks as the first Private RG fills.

Design Consideration / Caveat #3: As illustrated above If you expand a storage pool before it gets full or close to being full, you may get unpredictable I/O performance capabilities as depending on under what condition you expand the pool, you could get different levels data striping on the data sets. Things can get even more hairy if you decide to add disks outside the 5disk multiple recommendation. If you just need enough space for 4more disks as an example, and expanded the pool by 4 disks, you would end up with 2x 4+1 RGs, and 1x 3+1 RG underneath. At some point, some of the I/O could be restricted to just 3disk striping, instead of 5 or 10.

From this, it seems the best way to utilize storage pools is to allocate as many disks as you can upfront. By this I mean, if you have a tray of disks on a Clariion or VNX, allocate all 15disks when creating the pool. This will give you 3x 4+1 RGs underneath, and any data placed in the pool will get striped across all 15disks consistently. It would be good to avoid creating small disk count pools, and expanding them frequently with 5disks at a time, as you could run into issues like the above very easily and not realize it.

There is one other issue to consider in pool expansion. Let’s say you create a pool with 15disks, and start placing data on it. All of your I/O is being wide-striped across the 15disks and all is well, but now you need more space, and need to expand the pool. Going by the 5disk multiple rule you should be safe adding 5 disks right? While this is something you can do, and it will work, it may again give unexpected results.

Before expansion, your 15 disk R5 pool looks like this:

All data is spread across 15 disks, but the pool is at capacity (imagine it is full); if the pool is expanded at this point, here is what it would look like with any new VMs (or any data) are placed on it:

After the pool is expanded, the new data is only getting striped across 5 disks, instead of the original 15! So if you placed a new VM on this device, expecting very side striping, you could be sorely disappointed as it is only getting 5 disks worth of data striping.

Design Consideration / Caveat #4: From this, the recommendation to expand storage pools would be expand it by the number of disks it was initially created with. So if you have a 15disk storage pool, expand it by another 15disks so the new data can take advantage of the wide striping. I have also heard people recommend doubling the storage pool size as a recommendation, but this may be overkill. As an example, if you have a 15disk storage pool, and add another 15 disks to it, you could theoretically have some hosts I/O striping their data over 30 disks; so should you now expand this pool by 30disks instead of 15? And then 60 disks the next time? As always, understand the impact of your design choices and performance requirements before making any decisions as there is no blanket right/wrong approach here.

Hopefully EMC will introduce a re-balance feature to the pool like what exists in the latest VMAX code to alleviate most of these issues. But until then, these are some things to be aware of when designing and deploying a Storage Pool based configuration.

Another thing to watch out for is changing default SP owner of the Pool LUN. Because the LUN is made up of Private LUNs underneath, that can introduce performance problems as it has to use the redirector driver to get to the LUNs on the other SP; so make sure to balance the pool LUNs when they are first created.

Utilizing Thin LUNs introduces a whole new level of considerations as it does not pre-allocate the 1GB slices, but rather writes in 8K extents. This can cause even more unpredictable behavior under the circumstances outlined above, but that should be something to be aware of when using Thin provisioning in general. Then there comes the variable of utilizing Thin Provisioning on the host side adding another level of complexity in how the data is allocated and written. I may write a follow up post to this illustrating some of these scenarios in a Thin provision environment on both host and array sides. Also, I did not even touch on some of the considerations when using RAID10 pools, and I will probably follow up with that later as well.

Generally speaking, if ultra deterministic performance is required, it is still best to use traditional RAID groups. Customers may have certain workloads that simply need dedicated disks, and I see no reason not use RAID groups for those use cases still. Again, its about understanding the requirements and translating them into a proper design; the good news is the EMC arrays give that flexibility. There is no question that using storage pool based approaches take the management headache out of storage administration, but architects should be aware of the considerations and caveats of any design, always. Layering FAST VP on top of storage pools is an excellent solution for the majority of the customers, and it is important to note that the ONLY way to get automated storage tiering is to use Pool based LUNs.

As always comments/questions/corrections always welcome!

 

原文地址

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

EMC Storage Pool Deep Dive: Design Considerations & Caveats

http://vjswami.com/2011/03/05/emc-storage-pool-deep-dive-design-considerations-caveats/

[转载][概念]Storage Pool, Private RAID Group, Private LUN的更多相关文章

  1. LVM 类型的 Storage Pool - 每天5分钟玩转 OpenStack(8)

    LVM 类型的 Storage Pool 不仅一个文件可以分配给客户机作为虚拟磁盘,宿主机上 VG 中的 LV 也可以作为虚拟磁盘分配给虚拟机使用. 不过,LV 由于没有磁盘的 MBR 引导记录,不能 ...

  2. Java-集合=第五题 (Map)设计Account 对象如下: private long id; private double balance; private String password; 要求完善设计,使得该Account 对象能够自动分配id。 给定一个List 如下: List list = new ArrayList(); list.add(new A

    第五题 (Map)设计Account 对象如下: private long id; private double balance; private String password; 要求完善设计,使得 ...

  3. Java-集合-第三题 有如下Student 对象, private String name; private int age; private int score; private String classNum; 其中,classNum 表示学生的班号,例如“class05”。 有如下List List list = new ArrayList(); l

    第三题 有如下Student 对象, private String name; private int age; private int score; private String classNum; ...

  4. 第三题 有如下Student 对象, private String name; private int age; private int score; private String classNum; 其中,classNum 表示学生的班号,例如“class05”。 有如下List List list = new ArrayList();

    list.add(new Student("Tom", 18, 100, "class05")); list.add(new Student("Jer ...

  5. 已知有一个Worker 类如下:  public class Worker  { private int age;  private String name;  private double salary;  public Worker (){}  public Worker (String nam

    package homework006; public class Worker { private int age; private String name; private double sala ...

  6. 设计Account 对象如下:  private long id;       private double balance;       private String password; 要求完善设计,使得该Account 对象能够自动分配id。 给定一个List 如下: &#

    package homework005; public class Account { private long id; private double balance; private String ...

  7. 有如下Student 对象,  private String name;       private int age;       private int score;   private String classNum;  其中,classNum

    package homework003; import java.util.ArrayList; import java.util.List; public class Text { public s ...

  8. 第三题 有如下Student 对象,  private String name;       private int age;       private int score;   private String classNum;  其中,classNum&

    //Student package zuoye; public class Student { private String name; private int age; private int sc ...

  9. LVM 类型的 Storage Pool

    LVM 类型的 Storage Pool 不仅一个文件可以分配给客户机作为虚拟磁盘,宿主机上 VG 中的 LV 也可以作为虚拟磁盘分配给虚拟机使用. 不过,LV 由于没有磁盘的 MBR 引导记录,不能 ...

随机推荐

  1. VuGen录制选项Recording Options

  2. bzoj 1853 容斥 + 搜索

    思路:先把所有幸运数字找出来, 把没有用的去掉,然后爆搜容斥,因为最多只会搜十几个就超过限制了, 所以是可行的. #include<bits/stdc++.h> #define LL lo ...

  3. 异步模型(APM)的注意事项

    一.在没有线程池的前提下使用APM APM可以让线程池在异步操作完成时调用指定的回调方法.它使用很少的资源,并提供了出色的性能,然而,APM 还允许通过另外三种方式发现异步操作在何时完成. 首先,如果 ...

  4. DDL DML DCL DQL的区别

    原文章出处:http://blog.csdn.net/tomatofly/article/details/5949070 SQL(Structure Query Language)语言是数据库的核心语 ...

  5. 【BZOJ 1566】 1566: [NOI2009]管道取珠 (DP)

    1566: [NOI2009]管道取珠 Time Limit: 20 Sec  Memory Limit: 650 MBSubmit: 1659  Solved: 971 Description In ...

  6. -【线性基】【BZOJ 2460】【BZOJ 2115】【HDU 3949】

    [把三道我做过的线性基题目放在一起总结一下,代码都挺简单,主要就是贪心思想和异或的高斯消元] [然后把网上的讲解归纳一下] 1.线性基: 若干数的线性基是一组数a1,a2,a3...an,其中ax的最 ...

  7. java 安全 技术

    韩梦飞沙  韩亚飞  313134555@qq.com  yue31313  han_meng_fei_sha 加密对应的类 是 Cipher ,意思 是加密的意思.这个类 在  javax.cryp ...

  8. 【期望DP】BZOJ3450- Tyvj1952 Easy

    ---恢复内容开始--- [题目大意] 有n次点击要做,成功了就是o,失败了就是x,分数是按comb计算的,连续a个comb就有a*a分,comb就是极大的连续o.求期望分数. [思路] 比之前的OS ...

  9. bzoj 2154

    收获: 1.当一个东西的取值范围很小时,或者感觉它很麻烦时,就枚举它 2.熟悉mobius函数.euler函数的和函数,以及euler函数用mobius函数的表示. 3.下取整分块理解更深了. /** ...

  10. ZOJ 1015 弦图判定

    一些定义: 弦图是一种特殊图:它的所有极小环都只有3个顶点. 单纯点:该顶点与其邻接点在原图中的导出子图是一个完全图. 图G的完美消去序列:一个顶点序列a1a2a3...an,使得对于每个元素ai,a ...