-
Notifications
You must be signed in to change notification settings - Fork 233
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
Windows 10 super slow I/O #373
Comments
Hello, From the task manager, I can see that Windows Update might be the process hogging the IO resources. |
Hi @ader1990, |
I usually test the storage IO with a simple command: dd. On Windows, it comes with the git environment. NOTE: dd command is very distructive if not used correctly, as it wipes the file as value for the argument "of", use it at your own risk. The code bellow is an incomplete example, as you need to change the path "C:\tmp" according to your environment. For sequential IO, from PowerShell: mkdir C:\tmp
& "C:\Program Files\Git\usr\bin\dd.exe" if=/dev/zero of=C:\tmp\output-8MB.img bs=8MB count=500 oflag=dsync I get around 650MB/s on a good NVME SSD. For random IO, from PowerShell: mkdir C:\tmp
& "C:\Program Files\Git\usr\bin\dd.exe" if=/dev/zero of=C:\tmp\output-4KB.img bs=4KB count=500 oflag=dsync I get around 25MB/s on a good NVME SSD. You can compare the two disks easily this way. |
I have created a Windows 10 Pro using windows-imaging-tools. After running a new VM based on this image, the Disk activation time is always 100%, while the VM is not running any special service. I am using OpenStack Yoga on a baremetal server with a KVM hypervisor. It works fine when I run a VM using the same image file and VirtualBox.
I also allocated more resources to the OpenStack VM, but nothing changed.
The text was updated successfully, but these errors were encountered: