戴尔服务器720dx格式化硬盘,戴尔首个基于 Ocarina 的解决方案--DX6000G 存储压缩节点...

您是否注意到大多数文件自从创建后再也没有被回头看过?阅读这段时间的一些存储设备分析报告,您会发现这个现象所具有的现实意义,因为,对数据中心的存储要求在不断提高。如果能有一种有效的方式来压缩那些只看过一次,但因为业务要求需要保留的文件那就太好了。

现在,在Dell World(戴尔全球大会)上,Dell Storage(戴尔存储部门)宣布推出全新的PowerVault DX6000GSCN(存储压缩节点)。作为戴尔 DX 对象存储平台的新选件,该方案提供了全新的压缩能力,能够大幅减少数据文件的大小,以及归档存储设备和云架构存储设备的足迹。这是戴尔 2010 年并购 Ocarina Networks 之后,首个利用其技术的解决方案。

什么是对象存储?

针对数据完整性、数据的大规模扩展以及提供更多数据存储信息的要求正在不断提高,对象存储则能很好地满足这些要求。戴尔的 DX 对象存储平台无需文件系统即可在相关环境下存储文件数据。文件将作为对象和描述该文件的元数据一同储存。每个对象都有一个唯一的 ID,可用来检索该对象。这些 ID 存储在平面地址空间 (flat address space) 中——没有文件系统层级。对象存储设备不同于一般的存储设备,因为它是按照内容来管理文件……而传统的文件系统则根据位置来管理文件。

基本型DX 对象存储平台配置包含一个用来管理解决方案的 DX 集群服务器节点 (CSN) 和 2 个用来存储对象的 DX60xxS 存储节点。由于 DX 通过 HTTP 进行内部通信,因此戴尔在今年四月引入了可选的 DX6000G 集群文件服务器 (CFS) 节点,以便让客户能够使用通用文件协议(CIFS 和 NFS)来直接访问配置。今天,随着 DX6000G 存储压缩节点 (SCN) 的宣布推出,戴尔可以向客户提供可选的压缩技术,来减少 DX 存储设备的足迹并降低容量需求,这使得戴尔进一步强化了 DX 的整体价值主张。

新解决方案究竟包含些什么?

DX6000G SCN 在集群服务节点的配合下发挥效用。可以通过 CSN 对所有存储的数据进行压缩(包括可变对象)。用户可以根据对象来设置压缩率:

快速模式(缺省): 快速压缩和解压数据。

最佳模式: 以较慢的速率压缩,但可以大幅减少数据大小

取决于文件类型,对象可压缩多达 90%。内部测试显示,对于一般的办公文件和电子邮件数据(包括 XLS、DOC 和 PPT 文件),通过压缩,用户可以获得 50-79% 的空间节约,而对于网页内容(例如,XML 和 HTM 文件),则可以获得将近 90% 的空间节约。

重复数据删除的情况如何?

重复数据删除相对于对象并无太大帮助,因此这款新产品专注于压缩技术。尽管如此,我们还是计划在戴尔的流动数据存储架构中引入重复数据删除,该项解决方案有望在 2012 年初宣布推出。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
The following is the data that you can add to your input file (as an example). Notice that the first line is going to be a line representing your own hobbies. In my case, it is the Vitaly,table tennis,chess,hacking line. Your goal is to create a class called Student. Every Student will contain a name (String) and an ArrayList<String> storing hobbies. Then, you will add all those students from the file into an ArrayList<Student>, with each Student having a separate name and ArrayList of hobbies. Here is an example file containing students (the first line will always represent yourself). NOTE: eventually, we will have a different file containing all our real names and hobbies so that we could find out with how many people each of us share the same hobby. Vitaly,table tennis,chess,hacking Sean,cooking,guitar,rainbow six Nolan,gym,piano,reading,video games Jack,cooking,swimming,music Ray,piano,video games,volleyball Emily,crochet,drawing,gardening,tuba,violin Hudson,anime,video games,trumpet Matt,piano,Reading,video games,traveling Alex,swimming,video games,saxophone Roman,piano,dancing,art Teddy,chess,lifting,swimming Sarah,baking,reading,singing,theatre Maya,violin,knitting,reading,billiards Amy,art,gaming,guitar,table tennis Daniel,video games,tennis,soccer,biking,trumpet Derek,cooking,flute,gaming,swimming,table tennis Daisey,video games,guitar,cleaning,drawing,animated shows,reading,shopping Lily,flute,ocarina,video games,baking Stella,roller skating,sudoku,watching baseball,harp Sophie,viola,ukulele,piano,video games Step 2. Sort the student list in the ascending order of student names and print them all on the screen After reading the file and storing the data in an ArrayList<Student>, your program should sort the ArrayList<Student> in alphabetical order based on their names and then print the students' data (please see an example below). As you can see, here is the list of all students printed in alphabetical order based on their names and hobbies. You are not going to have yourself printed in this list (as you can see, this list does not have Vitaly). Alex: [swimming, video games, saxophone] Amy: [art, gaming, guitar] Daisey: [video games, guitar, cleaning, drawing, animated shows, reading, shopping] Daniel: [video games, tennis, soccer, biking, trumpet] Derek: [cooking, flute, gaming, swimming] Emily: [crochet, drawing, gardening, tuba, violin] Hudson: [anime, video games, trumpet] Jack: [cooking, swimming, music] Lily: [flute, ocarina, video games, baking] Matt: [piano, Reading, video games, traveling] Maya: [violin, knitting, reading, billiards] Nolan: [gym, piano, reading, video games] Ray: [piano, video games, volleyball] Roman: [piano, dancing, art] Sarah: [baking, reading, singing, theatre] Sean: [cooking, guitar, rainbow six] Sophie: [viola, ukulele, piano, video games] Stella: [roller skating, sudoku, watching baseball, harp] Teddy: [chess, lifting, swimming] Step 3. Find all students who share the same hobby with you and print them all on the screen Finally, your program should print the information related to the students who share the same hobby as you. In my case, it would be the following based on the above-mentioned file. There are 0 students sharing the same hobby called "hacking" with me. There are 1 students (Teddy) sharing the same hobby called "chess" with me. There are 2 students (Amy, Derek) sharing the same hobby called "table tennis" with me.
最新发布
06-10

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值