I have a NUC (BEH model) and a M.2 SSD PCIe gen3 NMVe card (Samsung 970 pro 512GB) and I have a slow and fast write speed result in Ubuntu 18.04.3 with two different kernels. I used ukuu for kernel switching and in kernel 5.0+ which comes standard with the Ubuntu installer I get around 600MiB ( sad ) write speed and with a previous kernel version of 4.9.190, I get around 2200MiB with the benchmark tool in Ubuntu. I have tried the latest 5.2 kernel and it is still a problem. I have tried Linux mint 19.2 and I also get the a slow write speed because it is using a later kernel than 4.9.
Here is my benchmark result on kernel 4.9.190.
I think this and this are related problems and a simple google search indicates lots of SSD write performance issues. Could it be a massive potential linux kernel performance issue?
Any help or fix would be greatly welcome!
It seems that the kernel itself might be ok but somewhere in the benchmark tool (Disks) of ubuntu could be the issue.
Solution (work-around): I created a directory in the disk to be tested and then terminal into the directory and ran two commands on it. The first commands creates a temp file (4GB in size) and tests the write speed of the disk and the second command reads that file and tests the read speed.
The commands: -write:
dd if=/dev/zero of=tempfile bs=1M count=4096 conv=fdatasync,notrunc status=progress oflag=direct
-read:dd if=tempfile of=/dev/null bs=1M count=4096 status=progress iflag=direct
Here is my result:
The problem described is about the same here. I have a computer with ASUS Z10PE motherboard. That one has an in-built M2 NVMe slot. I also added 1 PCIe card that supports 1 NVMe drive. I also modded the BIOS to get bifurcation mode to have one PCIe slot to be divided in 4X4X4X4 so I can fit in the ASUS M2 Hyper PCIe card that allows up to 4 NVMe drives.
If I use GNOME-DISKS tool, that allows to run a performance test, the best case scenario is on the ASUS PCIe card with Samsung PM981 NVMe drives :
I softraided the Samsung NVMe PM981 dirves on the ASUS PCIe card. Speeds are now as follows :
It is like the kernel or MoBo sets the speed at AHCI speed (as it was a SATA drive).
Now if I use the above method, the results are quite different :
dd if=/dev/zero of=tempfile bs=1M count=16384 conv=fdatasync,notrunc status=progress oflag=direct 15183380480 octets (15 GB, 14 GiB) copiés, 5 s, 3,0 GB/s 16384+0 enregistrements lus 16384+0 enregistrements écrits 17179869184 octets (17 GB, 16 GiB) copiés, 5,63686 s, 3,0 GB/s
dd if=tempfile of=/dev/null bs=1M count=4096 status=progress iflag=direct 4096+0 enregistrements lus 4096+0 enregistrements écrits 4294967296 octets (4,3 GB, 4,0 GiB) copiés, 1,00056 s, 4,3 GB/s
So it is totally inconsistent between both tools : GNOME-DISKS and dd...
In real world : if I move a really large (about 20GB) file from one NVMe to another one, I hardly get more than 850MB/s even on the softraided drives, which is really MUCH MUCH MUCH slower than expected... Theory would be : 2 X 2400MB/s = 4800MB/s. Reality : 6/7 times less.
You ask me : I think there is a real problem either in MoBo or in Linux.
I'll have to install Windows just to check if the problem is with the MoBo or with OS.
Regards.
ISSUE VNMe slow write speed SOLVED
Hi all, I got 2 nvme drives. Samsusng 970 and SiliconPower p34a80. Dual boot on the Samsung. In windows10 both speeds are perfect. In ubuntu the SiliconPower write speed is 250MB/s when is NTFS, and 2GB/s when is ext4. Spent 2 days of playing but finaly got solution in my case. Added in fstab the big_writes option. My fstab line:
Good luck hope I helped :)