Code Monkey home page Code Monkey logo

Comments (3)

spiritLHLS avatar spiritLHLS commented on May 11, 2024

lemonbench的原生问题,有空看看也许能修复

from ecs.

spiritLHLS avatar spiritLHLS commented on May 11, 2024

903474a

应该已修复,你看再测一次看看

from ecs.

spiritLHLS avatar spiritLHLS commented on May 11, 2024

之前那个写入IOPS的计算是通过写入次数除以写入时间得到的:

DiskTest_WriteIOPS="$(echo ${DiskTest_WriteTime} $3 | awk '{printf "%d\n",$2/$1}')"

这种计算方法在大部分情况下是有效的,但对于较小的块大小和较大的写入次数,有偏差

因为IOPS是对每秒钟的读/写操作次数,而块大小和写入次数会影响到每个操作的大小。当块大小较小且写入次数较大时,每个操作的大小会减小,导致IOPS计算的结果偏小。

为了准确地计算IOPS,已经将写入操作的大小(块大小)与写入时间结合,得到总的写入字节数,然后将其除以写入时间来计算IOPS,这思路应该没毛病了

from ecs.

Related Issues (9)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.