You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We found a large amount of disk IO during the conversion process, e.g. 60MB of disk IO when the original OCI layer is only 8KB.
We have identified the reason for this. The convertor does mkfs to initialize an ext4 filesystem but we missed a feature called 'Lazy Block Group Initialization'. Then, every time it opens/closes the ext4 filesystem, it reads through the bitmap/inode table in each block group. Otherwise, we use a simple cache to increment the IO block size.
We need to change the mkfs to fix it, which may affect the layer deduplication.
What did you expect to happen?
No response
How can we reproduce it?
Convert an overlaybd image and use the option --reserve
What happened in your environment?
We found a large amount of disk IO during the conversion process, e.g. 60MB of disk IO when the original OCI layer is only 8KB.
We have identified the reason for this. The convertor does
mkfs
to initialize an ext4 filesystem but we missed a feature called 'Lazy Block Group Initialization'. Then, every time it opens/closes the ext4 filesystem, it reads through the bitmap/inode table in each block group. Otherwise, we use a simple cache to increment the IO block size.We need to change the
mkfs
to fix it, which may affect the layer deduplication.What did you expect to happen?
No response
How can we reproduce it?
Convert an overlaybd image and use the option
--reserve
What is the version of your Accelerated Container Image?
v1.0.2
What is your OS environment?
centos 8
Are you willing to submit PRs to fix it?
The text was updated successfully, but these errors were encountered: