Hi David, as an advise. You should not set sync=disabled on TrueNAS. Doing that you’re considering every write as async, and if you have a powerless you’ll have data lost.

There are some conservatives that state that you should do the opposite: sync=always, which bogs down the performance, but I particularly use sync=standard.

I think you should look at the real issue on your pool. Is it with more than 80% occupation? Do you have an SLOG device (to offload the sync writes, so you can continue using sync=standard)?

Another issue is that RAID-Z is not really recommended for latency scenarios (VMs). You should be using stripe of mirrors instead. RAID-Z2 would be a choice if you have lots of RAM and L2ARC devices to compensate the slow disk access. ZFS is not a performance beast, security is the first option in this filesystem.

Regards.

PS: I run FreeNAS (and now TrueNAS) since the 0.7 days and with VM storage since 8.2. It’s good if you know what you’re doing.

On 14 Jul 2022, at 12:26, David Johnson <djohnson@maxistechnology.com> wrote:

Thank you Nir, this is good information.


On Thu, Jul 14, 2022 at 9:34 AM Nir Soffer <nsoffer@redhat.com> wrote:
On Tue, Jul 12, 2022 at 9:02 AM David Johnson <djohnson@maxistechnology.com> wrote:
Good morning all,

I am trying to get the best performance out of my cluster possible,

Here are the details of what I have now:

Ovirt version: 4.4.10.7-1.el8
Bare metal for the ovirt engine
two hosts
TrueNAS cluster storage
   1 NFS share
   3 vdevs, 6 drives in raidz2 in each vdev
   2 nvme drives for silog
Storage network is 10 GBit all static IP addresses

Tonight, I built a new VM from a template.  It had 5 attached disks totalling 100 GB.  It took 30 minutes to deploy the new VM from the template.  

Global utilization was 9%. 
The SPM has 50% of its memory free and never showed more than 12% network utilization

62 out of 65 TB are available on the newly created NFS backing store (no fragmentation). The TureNAS system is probably overprovisioned for our use.

There were peak throughputs of up to 4 GBytes/second (on a 10 GBit network), but overall throughput on the NAS and the network were low.
ARC hits were 95 to 100%
L2 hits were 0 to 70%

Here's the NFS usage stats:
<image.png>

I believe the first peak is where the silog buffered the initial burst of instructions, followed by sustained IO as the VM volumes were built in parallel, and then finally tapering off to the one 50 GB volume that took 40 minutes to copy.

The indications of the NFS stats graph are that the network performance is just fine.

Here are the disk IO stats covering the same time frame, plus a bit before to show a spike IO:

<image.png>
The spike at 2250 (10 minutes before I started building my VM) shows that the spinners actually hit write speed of almost 20 MBytes per second briefly, then settled in at a sustained 3 to 4 MBytes per second.  The silog absorbs several spikes, but remains mostly idle, with activity measured in kilobytes per second.

The HGST HUS726060AL5210 drives boast a spike throughput of 12 GB/S, and sustained throughput of 227 Mbps.

------
Now to the questions:
1. Am I asking the on the right list? Does this look like something where tuning ovirt might make a difference, or is this more likely a configuration issue with my storage appliances?

2. Am I expecting too much?  Is this well within the bounds of acceptable (expected) performance? 

3. How would I go about identifying the bottleneck, should I need to dig deeper?

One thing that can be interesting to try to to apply this patch for vdsm:

diff --git a/lib/vdsm/storage/sd.py b/lib/vdsm/storage/sd.py
index 36c393b5a..9cb7486c0 100644
--- a/lib/vdsm/storage/sd.py
+++ b/lib/vdsm/storage/sd.py
@@ -401,7 +401,7 @@ class StorageDomainManifest(object):
         Unordered writes improve copy performance but are recommended only for
         preallocated devices and raw format.
         """
-        return format == sc.RAW_FORMAT and not self.supportsSparseness
+        return True
 
     @property
     def oop(self):

This enables unordered writes for qemu-img convert, which can be up to 6 times faster on
block storage. When we tested it with file storage it did not give lot of improvement,  but this
was tested a long time ago, and since then we use unordered writes everywhere else in the 
system.

Another thing to try is NFS 4.2, which can be much faster when coping images, since it supports
sparseness. But I don't think TrueNAS supports NFS 4.2 yet (in 12.x they did not).

If you must work with older NFS, using qcow2 disks will be much faster when copying disks
(e.g. create vm from template). The way to get qcow2 disks is to check "enable incremental backup"
when creating disks.

Nir
_______________________________________________
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-leave@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/
List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/US7ENNAE3F365BVKKKUQ55KZVXVRNXZZ/