Skip to content

Commit a675497

Browse files
committed
More Acrolinx fixes plus fixing broken links.
1 parent 80bb4b1 commit a675497

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

articles/storage/files/nfs-large-directories.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ The following graph compares the total time it takes to finish different operati
9595
:::image type="content" source="media/nfs-large-directories/default-mount-versus-actimeo.png" alt-text="Graph comparing the time to finish different operations with default mount versus setting an actimeo value of 30 for a workload with 1 million files." border="false":::
9696

9797
### NFS nconnect
98-
NFS nconnect is a client-side mount option for NFS file shares that allows you to use multiple TCP connections between the client and your NFS file share. We recommend the optimal setting of `nconnect=4` to reduce latency and improve performance. The nconnect feature can be especially useful for workloads that use asynchronous or synchronous I/O from multiple threads. [Learn more](nfs-performance.md#nconnect).
98+
NFS nconnect is a client-side mount option for NFS file shares that allows you to use multiple TCP connections between the client and your NFS file share. We recommend the optimal setting of `nconnect=4` to reduce latency and improve performance. The nconnect feature can be especially useful for workloads that use asynchronous or synchronous I/O from multiple threads. [Learn more](nfs-performance.md#nfs-nconnect).
9999

100100
## Commands and operations
101101

articles/storage/files/nfs-performance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ With nconnect, you can increase performance at scale using fewer client machines
6161

6262
| **Metric (operation)** | **I/O size** | **Performance improvement** |
6363
|-|-|-|
64-
| IOPS (write) | 64 KiB, 1024 KiB | 3x |
64+
| IOPS (write) | 64 KiB, 1,024 KiB | 3x |
6565
| IOPS (read) | All I/O sizes | 2-4x |
66-
| Throughput (write) | 64 KiB, 1024 KiB | 3x |
66+
| Throughput (write) | 64 KiB, 1,024 KiB | 3x |
6767
| Throughput (read) | All I/O sizes | 2-4x |
6868

6969
### Prerequisites
@@ -163,7 +163,7 @@ fio --ioengine=libaio --direct=1 --nrfiles=4 --numjobs=1 --runtime=1800 --time_b
163163
fio --ioengine=libaio --direct=1 --nrfiles=4 --numjobs=1 --runtime=1800 --time_based --bs=64k --iodepth=64 --filesize=4G --rw=randread --group_reporting --ramp_time=300
164164
```
165165

166-
**1024 KiB I/O size - 100% random read - 64 queue depth**
166+
**1,024 KiB I/O size - 100% random read - 64 queue depth**
167167

168168
```bash
169169
fio --ioengine=libaio --direct=1 --nrfiles=4 --numjobs=1 --runtime=1800 --time_based --bs=1024k --iodepth=64 --filesize=4G --rw=randread --group_reporting --ramp_time=300

articles/storage/files/storage-files-how-to-mount-nfs-shares.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ You can mount the share using the Azure portal. You can also create a record in
6969

7070
### Mount an NFS share using the Azure portal
7171

72-
You can use the `nconnect` Linux mount option to improve performance for NFS Azure file shares at scale. For more information, see [Improve NFS Azure file share performance](nfs-performance.md#nconnect).
72+
You can use the `nconnect` Linux mount option to improve performance for NFS Azure file shares at scale. For more information, see [Improve NFS Azure file share performance](nfs-performance.md#nfs-nconnect).
7373

7474
1. Once the file share is created, select the share and select **Connect from Linux**.
7575
1. Enter the mount path you'd like to use, then copy the script.

articles/storage/files/storage-files-migration-nfs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This article covers the basic aspects of migrating from Linux file servers to NF
2626

2727
## Prerequisites
2828

29-
You'll need at least one NFS Azure file share mounted to a Linux virtual machine (VM). To create one, see [Create an NFS Azure file share and mount it on a Linux VM](storage-files-quick-create-use-linux.md). We recommend mounting the share with nconnect to use multiple TCP connections. For more information, see [Improve NFS Azure file share performance](nfs-performance.md#nconnect).
29+
You'll need at least one NFS Azure file share mounted to a Linux virtual machine (VM). To create one, see [Create an NFS Azure file share and mount it on a Linux VM](storage-files-quick-create-use-linux.md). We recommend mounting the share with nconnect to use multiple TCP connections. For more information, see [Improve NFS Azure file share performance](nfs-performance.md#nfs-nconnect).
3030

3131
## Migration tools
3232

articles/storage/files/storage-snapshots-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ az storage share list --account-name <storage-account-name> --include-snapshots
368368

369369
To mount an NFS Azure file share snapshot to a Linux VM (NFS client) and restore files, follow these steps.
370370

371-
1. Run the following command in a console. See [Mount options](storage-files-how-to-mount-nfs-shares.md#mount-options) for other recommended mount options. To improve copy performance, mount the snapshot with [nconnect](nfs-performance.md#nconnect) to use multiple TCP channels.
371+
1. Run the following command in a console. See [Mount options](storage-files-how-to-mount-nfs-shares.md#mount-options) for other recommended mount options. To improve copy performance, mount the snapshot with [nconnect](nfs-performance.md#nfs-nconnect) to use multiple TCP channels.
372372

373373
```bash
374374
sudo mount -o vers=4,minorversion=1,proto=tcp,sec=sys $server:/nfs4account/share /media/nfs

0 commit comments

Comments
 (0)