热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

iometer1.1.0重要特性说明之WriteIODataPattern

iometer1.1.0版本包含了3种WriteIODataPattern。分别是:Repeatingbytes、Pseudo-Random(2006.07.27及其之前的版本默认

    iometer 1.1.0 版本包含了3种Write IO Data Pattern。分别是:Repeating bytes、Pseudo-Random (2006.07.27及其之前的版本默认) 和 Full random。实际上这三种IO数据类型的代码在1.1.0 rc1 就已经合入。

-------------------

Version 1.1.0 (RC1)
===================
- New features:
- (All) Different data randomization options are now available via a drop down menu in the GUI. Options are: "Repeating bytes","Pseudo-Random" (used by version 2006.07.27 and older) and "Full random".
- (All) Randomization seeding support (by Ryan Bever) was added to define a fixed seed for the random number generator. A fixed seed can be specified on a per Manager or per Worker basis in the Disk Targets page of the GUI.
..........(省略多字,详细内容将查阅:http://sourceforge.net/p/iometer/svn/HEAD/tree/trunk/IOmeter/CHANGELOG.txt)


-------------------

IOTargetDisk.cpp 文件:

//
// Logical drives are accessed through a file on the drive.  This will create
// the file by writing in units of "bytes" beginning at "*prepare_offset".  It
// maintains a simple I/O queue of depth PREPARE_QDEPTH, which it keeps as
// full as possible.  It keeps queueing up new I/Os until the disk fills up,
// or the user-specified file size (starting_sector + maximum_size) is reached,
// or a STOP_PREPARE message is received (reflected in "*test_state").  It
// returns only when all queued I/Os have completed. 
// Return value is TRUE for success, FALSE if any error occurred.
//
BOOL TargetDisk::Prepare(DWORDLONG * prepare_offset, volatile TestState * test_state, int sector_size, unsigned char* _random_data_buffer, long long _random_datat_buffer_size)
{
 BOOL write_ok;
 int num_outstanding;
 DWORD bytes_written;
 OVERLAPPED olap[PREPARE_QDEPTH];
 BOOL busy[PREPARE_QDEPTH];
 BOOL retval;
 int i;
 void *buffer = NULL;
 DWORD bytes; // static to aid switch to single sectors to finish up preparing
 BOOL OnSingleSectors= FALSE; // mark if a switch needs to be made to single sector writes
 BOOL singleSectorSwitch = FALSE; // mark that single sectors are being used to write
 DWORDLONG rand_seed;
#ifdef IOMTR_SETTING_LINUX_LIBAIO
  struct statfs fsInfo;
  int statResult;
  int fd = -1;
  fd = ((struct File *)disk_file)->fd;
#endif

 // Save current spec.random so that it can be reset back to the same seed value after preparing disks
 // This allows the PRNG to be the same when doing the actual IO, whether the disk is prepped or not and the user specifies fixed seed
 rand_seed = spec.random;

 // Allocate a large (64k for 512 byte sector size) buffer for the preparation.
 bytes = sector_size * 128;

#if defined(IOMTR_OSFAMILY_NETWARE)
 NXMemFree(buffer);
 errno = 0;
 if (!(buffer = NXMemAlloc(bytes, 1)))
#elif defined(IOMTR_OSFAMILY_UNIX)
 free(buffer);
 errno = 0;
 if (!(buffer = valloc(bytes)))
#elif defined(IOMTR_OSFAMILY_WINDOWS)
 VirtualFree(buffer, 0, MEM_RELEASE);
 if (!(buffer = VirtualAlloc(NULL, bytes, MEM_COMMIT, PAGE_READWRITE)))
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
 {
  cout <<"*** Could not allocate buffer to prepare disk." <  return FALSE;
 }

 switch (spec.DataPattern) {
  case DATA_PATTERN_REPEATING_BYTES:
   // Do nothing here...a new random byte will be chosen below for each IO
   break;
  case DATA_PATTERN_PSEUDO_RANDOM:
   for( DWORD x = 0; x     ((unsigned char*)buffer)[x] = (unsigned char)Rand(0xff);
   break;
  case DATA_PATTERN_FULL_RANDOM:
   //Nothing to do here
   break;
 }

..................

#ifdef IOMTR_SETTING_LINUX_LIBAIO
    statResult = fstatfs(fd, &fsInfo);
    if (statResult <0) {
     cerr <<__FUNCTION__ <<": Couldn‘t statfs logical disk file!" <    }
    if (fsInfo.f_bfree <= 0 ) {
     write_ok = FALSE;
     break;
    }
#endif

    // If we are still writing and the slot is not busy, start an I/O for
    // this slot.
    if ((*test_state == TestPreparing) && write_ok && !busy[i]) {
     // Set its address.
     olap[i].Offset = (DWORD) * prepare_offset;
     olap[i].OffsetHigh = (DWORD) (*prepare_offset >> 32);

     // Fill the buffer with some new random data so we aren‘t writing all zeros each time
     switch (spec.DataPattern) {
      case DATA_PATTERN_REPEATING_BYTES:
       memset(buffer, rand(), bytes);
       break;
      case DATA_PATTERN_PSEUDO_RANDOM:
       break; // Nothing to do here, buffer was set above
      case DATA_PATTERN_FULL_RANDOM:
       //Buffer offset must be DWORD-aligned in memory, otherwise the transfer fails
       //Choose a pointer into the buffer
       long long mem_offset = (long long)Rand(_random_datat_buffer_size-bytes);

       //See how far it is from being DWORD-aligned
       long long remainder = mem_offset & (sizeof(DWORD) - 1);

       //Align the pointer using the remainder
       mem_offset = mem_offset - remainder;

       buffer = &_random_data_buffer[mem_offset];
       break;
     }

     // Do the asynchronous write.
     if (WriteFile(disk_file, (char *)buffer, bytes, &bytes_written, &(olap[i]))) {
      // It succeeded immediately!
#ifdef _DEBUG
      cout <<"Wrote (immediately) " <          <#endif
      // Advance the file pointer, but do not mark the slot as busy.
      *prepare_offset += bytes;
     } else {
      // It did not succeed immediately... did it start OK?
      if (GetLastError() == ERROR_IO_PENDING) {
       // It started OK.
#if _DETAILS
       cout <<"I/O started successfully for slot #" <           <<" for " <           <<*prepare_offset <#endif


---------------


Repeating bytes:

技术分享



Pseudo-Random:

技术分享




Full random:

技术分享



  • 应用

    目前我知道的一个领域情况是,iometer 选择不同IO Data Pattern,可以用于数据压缩算法产品的测试结果的效果宣传上。存储领域,我想近几年的数据重删应用,可能偶尔会用到这些。对比三种方式,可以看出,采用Repeating bytes 方式,是最利于产品宣传的。而iometer 2006.07.27 版本默认是伪随机方式,故,最好采用iometer 1.1.0 GA 版本,或者基于这个版本的增强版本(笔者博客目前有一个20150123A1版本)。

    



本文出自 “Gedankenwesen” 博客,请务必保留此出处http://yungchin.blog.51cto.com/9614170/1609825

iometer 1.1.0 重要特性说明之Write IO Data Pattern


推荐阅读
  • 深入理解Cookie与Session会话管理
    本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]
  • QUIC协议:快速UDP互联网连接
    QUIC(Quick UDP Internet Connections)是谷歌开发的一种旨在提高网络性能和安全性的传输层协议。它基于UDP,并结合了TLS级别的安全性,提供了更高效、更可靠的互联网通信方式。 ... [详细]
  • 在Linux系统中配置并启动ActiveMQ
    本文详细介绍了如何在Linux环境中安装和配置ActiveMQ,包括端口开放及防火墙设置。通过本文,您可以掌握完整的ActiveMQ部署流程,确保其在网络环境中正常运行。 ... [详细]
  • 几何画板展示电场线与等势面的交互关系
    几何画板是一款功能强大的物理教学软件,具备丰富的绘图和度量工具。它不仅能够模拟物理实验过程,还能通过定量分析揭示物理现象背后的规律,尤其适用于难以在实际实验中展示的内容。本文将介绍如何使用几何画板演示电场线与等势面之间的关系。 ... [详细]
  • Vue 2 中解决页面刷新和按钮跳转导致导航栏样式失效的问题
    本文介绍了如何通过配置路由的 meta 字段,确保 Vue 2 项目中的导航栏在页面刷新或内部按钮跳转时,始终保持正确的 active 样式。具体实现方法包括设置路由的 meta 属性,并在 HTML 模板中动态绑定类名。 ... [详细]
  • 本文探讨了如何通过最小生成树(MST)来计算严格次小生成树。在处理过程中,需特别注意所有边权重相等的情况,以避免错误。我们首先构建最小生成树,然后枚举每条非树边,检查其是否能形成更优的次小生成树。 ... [详细]
  • 2023 ARM嵌入式系统全国技术巡讲旨在分享ARM公司在半导体知识产权(IP)领域的最新进展。作为全球领先的IP提供商,ARM在嵌入式处理器市场占据主导地位,其产品广泛应用于90%以上的嵌入式设备中。此次巡讲将邀请来自ARM、飞思卡尔以及华清远见教育集团的行业专家,共同探讨当前嵌入式系统的前沿技术和应用。 ... [详细]
  • 国内BI工具迎战国际巨头Tableau,稳步崛起
    尽管商业智能(BI)工具在中国的普及程度尚不及国际市场,但近年来,随着本土企业的持续创新和市场推广,国内主流BI工具正逐渐崭露头角。面对国际品牌如Tableau的强大竞争,国内BI工具通过不断优化产品和技术,赢得了越来越多用户的认可。 ... [详细]
  • 深入理解 Oracle 存储函数:计算员工年收入
    本文介绍如何使用 Oracle 存储函数查询特定员工的年收入。我们将详细解释存储函数的创建过程,并提供完整的代码示例。 ... [详细]
  • 本文总结了2018年的关键成就,包括职业变动、购车、考取驾照等重要事件,并分享了读书、工作、家庭和朋友方面的感悟。同时,展望2019年,制定了健康、软实力提升和技术学习的具体目标。 ... [详细]
  • 本文介绍了如何使用jQuery根据元素的类型(如复选框)和标签名(如段落)来获取DOM对象。这有助于更高效地操作网页中的特定元素。 ... [详细]
  • 本文介绍如何在 Xcode 中使用快捷键和菜单命令对多行代码进行缩进,包括右缩进和左缩进的具体操作方法。 ... [详细]
  • 本文介绍了一款用于自动化部署 Linux 服务的 Bash 脚本。该脚本不仅涵盖了基本的文件复制和目录创建,还处理了系统服务的配置和启动,确保在多种 Linux 发行版上都能顺利运行。 ... [详细]
  • 如何在WPS Office for Mac中调整Word文档的文字排列方向
    本文将详细介绍如何使用最新版WPS Office for Mac调整Word文档中的文字排列方向。通过这些步骤,用户可以轻松更改文本的水平或垂直排列方式,以满足不同的排版需求。 ... [详细]
  • 理解存储器的层次结构有助于程序员优化程序性能,通过合理安排数据在不同层级的存储位置,提升CPU的数据访问速度。本文详细探讨了静态随机访问存储器(SRAM)和动态随机访问存储器(DRAM)的工作原理及其应用场景,并介绍了存储器模块中的数据存取过程及局部性原理。 ... [详细]
author-avatar
阿Love静_999
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有