Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementing device level IO metrics. #109

Merged
merged 4 commits into from
Mar 28, 2025
Merged

Conversation

xiaoxichen
Copy link
Contributor

Interfaces are opt-in as the observe_metrics need to be called from interface.

@codecov-commenter
Copy link

codecov-commenter commented Mar 21, 2025

⚠️ Please install the 'codecov app svg image' to ensure uploads and comments are reliably processed by Codecov.

Codecov Report

Attention: Patch coverage is 65.30612% with 17 lines in your changes missing coverage. Please review.

Project coverage is 44.47%. Comparing base (ec891d2) to head (b661328).
Report is 17 commits behind head on master.

Files with missing lines Patch % Lines
src/lib/interfaces/uring_drive_interface.cpp 52.94% 8 Missing ⚠️
src/include/iomgr/io_device.hpp 72.00% 7 Missing ⚠️
src/test/io_examiner/io_job.hpp 0.00% 2 Missing ⚠️

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files
@@            Coverage Diff             @@
##           master     #109      +/-   ##
==========================================
- Coverage   45.26%   44.47%   -0.79%     
==========================================
  Files          54       54              
  Lines        4012     4101      +89     
  Branches      478      484       +6     
==========================================
+ Hits         1816     1824       +8     
- Misses       2065     2144      +79     
- Partials      131      133       +2     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Signed-off-by: Xiaoxi Chen <[email protected]>
We can use it as a simple benchmark to see performance of
a drive after passing device interface

Signed-off-by: Xiaoxi Chen <[email protected]>
Signed-off-by: Xiaoxi Chen <[email protected]>
case DriveOpType::WRITE:
HISTOGRAM_OBSERVE(*m_metrics, write_lat, dur);
HISTOGRAM_OBSERVE(*m_metrics, write_size, iocb->size);
LOGINFO("write, size {}, lat {}", iocb->size, dur);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change to debug or trace log after you've finished debugging? Otherwise it would be too much log, right.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes this is more for debugging ATM. will lower them to trace later

case DriveOpType::READ:
HISTOGRAM_OBSERVE(*m_metrics, read_lat, dur);
HISTOGRAM_OBSERVE(*m_metrics, read_size, iocb->size);
LOGINFO("read, size {}, lat {}", iocb->size, dur);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar comment.

case DriveOpType::FSYNC:
HISTOGRAM_OBSERVE(*m_metrics, fsync_lat, dur);
HISTOGRAM_OBSERVE(*m_metrics, fsync_size, iocb->size);
LOGINFO("fsync, size {}, lat {}", iocb->size, dur);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar comment

Signed-off-by: Xiaoxi Chen <[email protected]>
@@ -178,6 +178,7 @@ io_device_ptr UringDriveInterface::open_dev(const std::string& devname, drive_ty
iodev->devname = devname;
iodev->creator = iomanager.am_i_io_reactor() ? iomanager.iofiber_self() : nullptr;
iodev->dtype = dev_type;
iodev->enable_metrics(devname);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In some environment where kernel version is not above 5.x, iomgr will fall back to AIO interface during boot time. Right now most of our env including test env is above 5.x, since iomgr is open source and to be friendly to community(who may running on old kernel ver), do you also want to add it in AIO and SPDK's open_dev to enable metrics?

@xiaoxichen xiaoxichen merged commit f4174b1 into eBay:master Mar 28, 2025
12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants