Azure Global articles

Azure Global articles

https://techcommunity.microsoft.com/t5/azure-global/bg-p/AzureCAT

Azure Global articles

EDA workloads on Azure NetApp Files- Performance Best Practice

Published

EDA workloads on Azure NetApp Files- Performance Best Practice

Azure NetApp Files (ANF) has been widely adopted across industries, including many silicon companies running their Electronic Design Automation (EDA) workloads on Azure. Azure NetApp Files provides 3 different service levels to ensure throughput, NFS 3.0/NFS4.1/SMB mount protocols connecting from Windows or Linux VMs, and takes only minutes to setup. Enterprise can seamlessly migrate their applications to Azure with an on-premises-like experience and performance.

 

We focused on using SPEC SFS® benchmark suite to spawn multi-threads simulating EDA-production like workloads. The standard FIO tool was also been used for stress test.

 

The goal of this article is to share lessons learned from running those tests on Azure NetApp files, and to:

  1. Provide practical performance best practices in real world.
  2. Examine ANF’s scale-out capabilities with multiple volumes.
  3. Cost-effective analysis for users to choose the most suitable ANF’s service level.

Architecture

The test was performed in Azure EAST US region. Mix of Premium and Ultra service level with different sizes of volumes were tested. E64dsv4 or D64dsv4 VMs were acting as Client VMs, they are the same machines with D-series save the amount of memory provisioned. The Client VMs are reside in the same Proximity Placement Group with Accelerated Networking enabled.

 

The best practice is usually to run the latest OS patch version available of the Client VMs.  And also to update the NFS utilities to their latest releases to get the newest bug fixes and feature functionality.
 

The average ping latency from Client VMs to ANF was around 0.6~0.8 milliseconds.

Architecgure.png

The overall performance is determined by two key metrics: Operations/sec and Response Time (millisecond). The test will incrementally generate EDA workload Operations, and Response Time will be recorded accordingly. The Operations/sec also indicates the combined read/write throughput (MB/s).

 

Performance Tuning 

Below table shows the 8 different options, mostly NFS mount options, have been examined and their performance impact. Please see Appendix for details and their applicability.

 

For all the results charts this article, if no specifically stated, NFS vers=3, mountproto=TCP, and default MTU=1500 were applied.

Performance tuning options.png

 

Please note:

1. The purpose of "nconnect" is to provide multiple transport connections per TCP connection or mount points on a client. This helps increase parallelism and performance for NFS mounts. The less # of clients, the more value "nconnect" can help to boost performance as it could potentially utilize all possible network bandwidth. And it's value gradually diminishes when # of clients increases, as there is only certain amount of bandwidth in total to go around.

 

2. "nocto" and "actimeo=600" is recommended only on scenarios where datasets are static. For example, it's especially advisable for EDA /tools volumes, as files aren’t changing so there is no cache coherency to maintain. Those setting will eliminate metadata and improve throughput.

 

The below results shows that the first 3 (A, B & C) options can all improve response time and maximize throughput significantly, and the effectiveness can be added up.

 

3 options.png

NFS 4.1 shows poor performance in this test compared to NFS 3. So be cautious of using it if there’s no specific security requirements.

NFS.png

TCP shows slightly better performance than UDP (‘mountproto=udp’)

TCPUDP.png

Appropriate rsize/wsize could improve performance. Using 1:1 rsize and wsize is always recommended, and 256K/256K is usually recommended in most cases for ANF.

 

rsizewsize.png

As there's no support for Azure Compute for jumbo frames, no significant impact on performance when changing VM's MTU # from default 1500 bytes to 9000 bytes. 

MTU.png

Cost-Effective analysis

One advantage of ANF is it provides 3 different service level with different pricing structure. That is, users are able to change the service level and volume size to reach the most cost-effective sweet spot when running their applications on Azure.

In below chart it shows:

  • Premium 25TiB, 50TiB and 100TiB were no different as the application didn’t drive sufficient throughput to warrant this much bandwidth (max. throughput=58,500 ops/sec while maintaining same response time)
  • Premium 12.5TiB can achieve max. throughput=54,000 ops/sec.
  • Premium 6.25TiB can achieve max. throughput=27,000 ops/sec.

Which implies high IOPS EDA workloads (such as the LSF events share) can generally be done on the Premium service level and without excessively large volumes.

CostEffective.png

Scalability

  • By simply adding # of volumes to ANF, max. throughput can scale linearly, and still maintaining low response time. (~500% from 1 to 5 volumes). In practice, more volumes is always better even if more throughput is not garnered to keep pressure on storage subsystems low.
  • In real world, EDA workloads are running on hundreds or thousands of nodes (VMs) connecting to the same ANF. Below chart shows more clients could further improve performance on either response time or overall throughput. As it surpasses the limitation of network bandwidth and max connections from one single VM.

Scalability.png

  

ScalabilityTable.png

 

Summary 

It's important to keep in mind that in real-world, storage performance is impacted by a wide range of factors. This article is by no means to provide an ultimate guidance, but to share lessons learned from running the standard EDA benchmarking tools, and examine some generic performance best practice could be applied in your applications running on Azure.

 

Generally, the first 4 options (A, B, C & D) are suggested to be applied when applicable. As their effectiveness can be added up, they also improve Max. IOPS and bandwidth on regular FIO test:

FIO.png

And as stated please be cautious to change rsize/wsize (option F) as it could also impact performance in different way.

 

Appendix:

1. Tuning /etc/sysctl.conf (option B) example on Ev4/Dv4:

 

 

net.core.somaxconn = 65536 net.core.netdev_max_backlog = 300000 net.core.rmem_default = 67108864 net.core.wmem_default = 67108864 net.core.rmem_max = 67108864 net.core.wmem_max = 67108864 net.ipv4.tcp_rmem = 8192 87380 16777216 net.ipv4.tcp_wmem = 8192 87380 16777216 net.ipv4.tcp_fin_timeout = 5

 

 

To make the change effective:

 

 

sudo sysctl -p

 

 

2. Upgrade Linux kernel to 5.3+ to be able to utilize “nconnect” (option C). Please note that you will need to reboot the VM at the end of the upgrade. So it might not be applicable for some cases.

 

 

# CentOS/Redhat 7+ sudo rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm # CenOS/Redhat 8+ sudo rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org sudo yum -y --enablerepo=elrepo-kernel install kernel-ml sudo reboot # check version: uname -r

 

 

uname.png

3. actimeo and nocto

The actimeo and nocto mount options are used primarily to increase raw performance. Please review NetApp ONTAP’s Best Practice Guide for applicability of your applications.

 

4. mounting examples:

TCP: 

 

 

sudo mount -t nfs -o rw,nconnect=16,nocto,actimeo=600,hard,rsize=1048576,wsize=1048576,vers=3,tcp 10.1.x.x:/ultravol ultravol

 

 

UDP:

 

 

sudo mount -t nfs -o rw,nconnect=16,nocto,actimeo=600,hard,rsize=1048576,wsize=1048576,vers=3,mountproto=udp 10.1.x.x:/ultravol ultravol

 

 

 

Learn more

 

Choose the best service level of Azure NetApp Files for your HPC applications 

Improve Azure NetApp Files performance for your EDA and HPC applications by using best practices 

Continue to website...

More from Azure Global articles