Skip to content

Commit f69fe5d

Browse files
authored
Merge pull request #8388 from ovh/CM-update-guide
Update guide Enterprise File Storage - Concepts de performances
2 parents 1edbf30 + 5531429 commit f69fe5d

File tree

16 files changed

+666
-67
lines changed

16 files changed

+666
-67
lines changed

pages/storage_and_backup/file_storage/enterprise_file_storage/netapp_concepts_performances/guide.de-de.md

Lines changed: 42 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
---
22
title: Enterprise File Storage - Performance-Konzepte
33
excerpt: "Entdecken Sie die Konzepte für die Bereitstellung, Überwachung und den Performance-Test von Enterprise File Storage"
4-
updated: 2022-11-30
4+
updated: 2025-09-12
55
---
66

7-
> [!primary]
8-
> Diese Übersetzung wurde durch unseren Partner SYSTRAN automatisch erstellt. In manchen Fällen können ungenaue Formulierungen verwendet worden sein, z.B. bei der Beschriftung von Schaltflächen oder technischen Details. Bitte ziehen Sie im Zweifelsfall die englische oder französische Fassung der Anleitung zu Rate. Möchten Sie mithelfen, diese Übersetzung zu verbessern? Dann nutzen Sie dazu bitte den Button "Beitragen" auf dieser Seite.
9-
>
10-
117
## Ziel
128

139
Auf dieser Seite finden Sie die Konzepte zur Bereitstellung, Überwachung und Überprüfung der Performance von [Enterprise File Storage](/links/storage/enterprise-file-storage).
@@ -70,8 +66,49 @@ Mit dem Tool [FIO](https://github.com/axboe/fio) können Sie verschiedene Szenar
7066
- Anzahl der FIO-Worker
7167
- Zugriffsmodell (Lesen/Schreiben/Sequenziell/Zufällig), etc.
7268

69+
Im Folgenden finden Sie einige Beispiele für fio-Befehle, mit denen Sie bestätigen können, dass die maximale Anzahl an IOPS (4000) oder die maximale Bandbreite (64 MB/s) für einen EFS-Dienst von 1 TB erreicht werden können:
70+
71+
**Random read - IOPS max**
72+
```
73+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randread -bs=8k -size=1G -time_based -runtime=60 -name=test1 -directory=/share-nfs
74+
```
75+
**Random write - IOPS max**
76+
```
77+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randwrite -bs=8k -size=1G -time_based -runtime=60 -name=test2 -directory=/share-nfs
78+
```
79+
**Random read - Bandwidth max**
80+
```
81+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randread -bs=64k -size=1G -time_based -runtime=60 -name=test3 -directory=/share-nfs
82+
```
83+
**Random write - Bandwidth max**
84+
```
85+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randwrite -bs=64k -size=1G -time_based -runtime=60 -name=test4 -directory=/share-nfs
86+
```
87+
**Sequential read - IOPS max**
88+
```
89+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=read -bs=8k -size=1G -time_based -runtime=60 -name=test5 -directory=/share-nfs
90+
```
91+
**Sequential write - IOPS max**
92+
```
93+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=write -bs=8k -size=1G -time_based -runtime=60 -name=test6 -directory=/share-nfs
94+
```
95+
**Sequential Read - Bandwidth max**
96+
```
97+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=read -bs=64k -size=1G -time_based -runtime=60 -name=test7 -directory=/share-nfs
98+
```
99+
**Sequential write - Bandwidth max**
100+
```
101+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=write -bs=64k -size=1G -time_based -runtime=60 -name=test8 -directory=/share-nfs
102+
```
103+
73104
Weitere Informationen finden Sie in [FIO-Dokumentation](https://fio.readthedocs.io/en/latest/index.html).
74105

106+
**Sie können auch andere Open-Source-Tools verwenden, z. B.:**
107+
108+
- [nfsiostat](https://man7.org/linux/man-pages/man8/nfsiostat.8.html)
109+
- [NFStest](https://wiki.linux-nfs.org/wiki/index.php/NFStest)
110+
- [nfstrace](https://github.com/epam/nfstrace)
111+
75112
## Weiterführende Informationen
76113

77114
Wenn Sie Schulungen oder technische Unterstützung bei der Implementierung unserer Lösungen benötigen, wenden Sie sich an Ihren Vertriebsmitarbeiter oder klicken Sie auf [diesen Link](/links/professional-services), um einen Kostenvoranschlag zu erhalten und eine persönliche Analyse Ihres Projekts durch unsere Experten des Professional Services Teams anzufordern.

pages/storage_and_backup/file_storage/enterprise_file_storage/netapp_concepts_performances/guide.en-asia.md

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Enterprise File Storage - Performance Concepts
33
excerpt: "Learn about the concepts of provisioning, tracking, and performance testing for Enterprise File Storage"
4-
updated: 2022-11-30
4+
updated: 2025-09-12
55
---
66

77
## Objective
@@ -27,7 +27,7 @@ This information is important when you design your storage architecture. Let’s
2727

2828
- **Example 2**: Your infrastructure requires **4500 IOPS** and a data volume of **1 TB**. To do this, you need to provision **2 TB** to get the **required 4500 IOPS**. Specifically, you will get **8000 IOPS** on provisioned capacity. This involves overprovisioning your service to ensure the level of performance you want.
2929

30-
- **Example 3**: Your application does not require any particular performance but a storage volume of more than **60TB**. In this case, it is best to switch to the more economical storage service [HA-NAS](/links/storage/nas-ha), which can reach capacities higher than 58 TB per service.
30+
- **Example 3**: Your application does not require any particular performance but a storage volume of more than **60 TB**. In this case, it is best to switch to the more economical storage service [HA-NAS](/links/storage/nas-ha), which can reach capacities higher than 58 TB per service.
3131

3232
### Volumes and quality of services (QoS)
3333

@@ -66,10 +66,52 @@ The [FIO](https://github.com/axboe/fio) tool allows you to test several scenario
6666
- The number of FIO workers
6767
- The access model (read/write/sequential/random), etc.
6868

69+
70+
Below are some examples of fio commands to validate that the maximum number of IOPS (4000) or the maximum bandwidth (64MB/s) can be reached for a 1TB EFS service:
71+
72+
**Random read - IOPS max**
73+
```
74+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randread -bs=8k -size=1G -time_based -runtime=60 -name=test1 -directory=/share-nfs
75+
```
76+
**Random write - IOPS max**
77+
```
78+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randwrite -bs=8k -size=1G -time_based -runtime=60 -name=test2 -directory=/share-nfs
79+
```
80+
**Random read - Bandwidth max**
81+
```
82+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randread -bs=64k -size=1G -time_based -runtime=60 -name=test3 -directory=/share-nfs
83+
```
84+
**Random write - Bandwidth max**
85+
```
86+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randwrite -bs=64k -size=1G -time_based -runtime=60 -name=test4 -directory=/share-nfs
87+
```
88+
**Sequential read - IOPS max**
89+
```
90+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=read -bs=8k -size=1G -time_based -runtime=60 -name=test5 -directory=/share-nfs
91+
```
92+
**Sequential write - IOPS max**
93+
```
94+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=write -bs=8k -size=1G -time_based -runtime=60 -name=test6 -directory=/share-nfs
95+
```
96+
**Sequential Read - Bandwidth max**
97+
```
98+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=read -bs=64k -size=1G -time_based -runtime=60 -name=test7 -directory=/share-nfs
99+
```
100+
**Sequential write - Bandwidth max**
101+
```
102+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=write -bs=64k -size=1G -time_based -runtime=60 -name=test8 -directory=/share-nfs
103+
```
104+
69105
For more information, see [the FIO documentation](https://fio.readthedocs.io/en/latest/index.html).
70106

107+
**You can also use other open-source tools such as:**
108+
109+
- [nfsiostat](https://man7.org/linux/man-pages/man8/nfsiostat.8.html)
110+
- [NFStest](https://wiki.linux-nfs.org/wiki/index.php/NFStest)
111+
- [nfstrace](https://github.com/epam/nfstrace)
112+
71113
## Go further
72114

73115
If you need training or technical assistance to implement our solutions, contact your sales representative or click on [this link](/links/professional-services) to get a quote and ask our Professional Services experts for assisting you on your specific use case of your project.
74116

75-
Join our community of Discord users: <https://discord.gg/ovhcloud>
117+
Join our community of Discord users: <https://discord.gg/ovhcloud>

pages/storage_and_backup/file_storage/enterprise_file_storage/netapp_concepts_performances/guide.en-au.md

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Enterprise File Storage - Performance Concepts
33
excerpt: "Learn about the concepts of provisioning, tracking, and performance testing for Enterprise File Storage"
4-
updated: 2022-11-30
4+
updated: 2025-09-12
55
---
66

77
## Objective
@@ -27,7 +27,7 @@ This information is important when you design your storage architecture. Let’s
2727

2828
- **Example 2**: Your infrastructure requires **4500 IOPS** and a data volume of **1 TB**. To do this, you need to provision **2 TB** to get the **required 4500 IOPS**. Specifically, you will get **8000 IOPS** on provisioned capacity. This involves overprovisioning your service to ensure the level of performance you want.
2929

30-
- **Example 3**: Your application does not require any particular performance but a storage volume of more than **60TB**. In this case, it is best to switch to the more economical storage service [HA-NAS](/links/storage/nas-ha), which can reach capacities higher than 58 TB per service.
30+
- **Example 3**: Your application does not require any particular performance but a storage volume of more than **60 TB**. In this case, it is best to switch to the more economical storage service [HA-NAS](/links/storage/nas-ha), which can reach capacities higher than 58 TB per service.
3131

3232
### Volumes and quality of services (QoS)
3333

@@ -66,10 +66,52 @@ The [FIO](https://github.com/axboe/fio) tool allows you to test several scenario
6666
- The number of FIO workers
6767
- The access model (read/write/sequential/random), etc.
6868

69+
70+
Below are some examples of fio commands to validate that the maximum number of IOPS (4000) or the maximum bandwidth (64MB/s) can be reached for a 1TB EFS service:
71+
72+
**Random read - IOPS max**
73+
```
74+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randread -bs=8k -size=1G -time_based -runtime=60 -name=test1 -directory=/share-nfs
75+
```
76+
**Random write - IOPS max**
77+
```
78+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randwrite -bs=8k -size=1G -time_based -runtime=60 -name=test2 -directory=/share-nfs
79+
```
80+
**Random read - Bandwidth max**
81+
```
82+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randread -bs=64k -size=1G -time_based -runtime=60 -name=test3 -directory=/share-nfs
83+
```
84+
**Random write - Bandwidth max**
85+
```
86+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randwrite -bs=64k -size=1G -time_based -runtime=60 -name=test4 -directory=/share-nfs
87+
```
88+
**Sequential read - IOPS max**
89+
```
90+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=read -bs=8k -size=1G -time_based -runtime=60 -name=test5 -directory=/share-nfs
91+
```
92+
**Sequential write - IOPS max**
93+
```
94+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=write -bs=8k -size=1G -time_based -runtime=60 -name=test6 -directory=/share-nfs
95+
```
96+
**Sequential Read - Bandwidth max**
97+
```
98+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=read -bs=64k -size=1G -time_based -runtime=60 -name=test7 -directory=/share-nfs
99+
```
100+
**Sequential write - Bandwidth max**
101+
```
102+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=write -bs=64k -size=1G -time_based -runtime=60 -name=test8 -directory=/share-nfs
103+
```
104+
69105
For more information, see [the FIO documentation](https://fio.readthedocs.io/en/latest/index.html).
70106

107+
**You can also use other open-source tools such as:**
108+
109+
- [nfsiostat](https://man7.org/linux/man-pages/man8/nfsiostat.8.html)
110+
- [NFStest](https://wiki.linux-nfs.org/wiki/index.php/NFStest)
111+
- [nfstrace](https://github.com/epam/nfstrace)
112+
71113
## Go further
72114

73115
If you need training or technical assistance to implement our solutions, contact your sales representative or click on [this link](/links/professional-services) to get a quote and ask our Professional Services experts for assisting you on your specific use case of your project.
74116

75-
Join our community of Discord users: <https://discord.gg/ovhcloud>
117+
Join our community of Discord users: <https://discord.gg/ovhcloud>

pages/storage_and_backup/file_storage/enterprise_file_storage/netapp_concepts_performances/guide.en-ca.md

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Enterprise File Storage - Performance Concepts
33
excerpt: "Learn about the concepts of provisioning, tracking, and performance testing for Enterprise File Storage"
4-
updated: 2022-11-30
4+
updated: 2025-09-12
55
---
66

77
## Objective
@@ -27,7 +27,7 @@ This information is important when you design your storage architecture. Let’s
2727

2828
- **Example 2**: Your infrastructure requires **4500 IOPS** and a data volume of **1 TB**. To do this, you need to provision **2 TB** to get the **required 4500 IOPS**. Specifically, you will get **8000 IOPS** on provisioned capacity. This involves overprovisioning your service to ensure the level of performance you want.
2929

30-
- **Example 3**: Your application does not require any particular performance but a storage volume of more than **60TB**. In this case, it is best to switch to the more economical storage service [HA-NAS](/links/storage/nas-ha), which can reach capacities higher than 58 TB per service.
30+
- **Example 3**: Your application does not require any particular performance but a storage volume of more than **60 TB**. In this case, it is best to switch to the more economical storage service [HA-NAS](/links/storage/nas-ha), which can reach capacities higher than 58 TB per service.
3131

3232
### Volumes and quality of services (QoS)
3333

@@ -66,10 +66,52 @@ The [FIO](https://github.com/axboe/fio) tool allows you to test several scenario
6666
- The number of FIO workers
6767
- The access model (read/write/sequential/random), etc.
6868

69+
70+
Below are some examples of fio commands to validate that the maximum number of IOPS (4000) or the maximum bandwidth (64MB/s) can be reached for a 1TB EFS service:
71+
72+
**Random read - IOPS max**
73+
```
74+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randread -bs=8k -size=1G -time_based -runtime=60 -name=test1 -directory=/share-nfs
75+
```
76+
**Random write - IOPS max**
77+
```
78+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randwrite -bs=8k -size=1G -time_based -runtime=60 -name=test2 -directory=/share-nfs
79+
```
80+
**Random read - Bandwidth max**
81+
```
82+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randread -bs=64k -size=1G -time_based -runtime=60 -name=test3 -directory=/share-nfs
83+
```
84+
**Random write - Bandwidth max**
85+
```
86+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randwrite -bs=64k -size=1G -time_based -runtime=60 -name=test4 -directory=/share-nfs
87+
```
88+
**Sequential read - IOPS max**
89+
```
90+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=read -bs=8k -size=1G -time_based -runtime=60 -name=test5 -directory=/share-nfs
91+
```
92+
**Sequential write - IOPS max**
93+
```
94+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=write -bs=8k -size=1G -time_based -runtime=60 -name=test6 -directory=/share-nfs
95+
```
96+
**Sequential Read - Bandwidth max**
97+
```
98+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=read -bs=64k -size=1G -time_based -runtime=60 -name=test7 -directory=/share-nfs
99+
```
100+
**Sequential write - Bandwidth max**
101+
```
102+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=write -bs=64k -size=1G -time_based -runtime=60 -name=test8 -directory=/share-nfs
103+
```
104+
69105
For more information, see [the FIO documentation](https://fio.readthedocs.io/en/latest/index.html).
70106

107+
**You can also use other open-source tools such as:**
108+
109+
- [nfsiostat](https://man7.org/linux/man-pages/man8/nfsiostat.8.html)
110+
- [NFStest](https://wiki.linux-nfs.org/wiki/index.php/NFStest)
111+
- [nfstrace](https://github.com/epam/nfstrace)
112+
71113
## Go further
72114

73115
If you need training or technical assistance to implement our solutions, contact your sales representative or click on [this link](/links/professional-services) to get a quote and ask our Professional Services experts for assisting you on your specific use case of your project.
74116

75-
Join our community of Discord users: <https://discord.gg/ovhcloud>
117+
Join our community of Discord users: <https://discord.gg/ovhcloud>

pages/storage_and_backup/file_storage/enterprise_file_storage/netapp_concepts_performances/guide.en-gb.md

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Enterprise File Storage - Performance Concepts
33
excerpt: "Learn about the concepts of provisioning, tracking, and performance testing for Enterprise File Storage"
4-
updated: 2022-11-30
4+
updated: 2025-09-12
55
---
66

77
## Objective
@@ -66,8 +66,50 @@ The [FIO](https://github.com/axboe/fio) tool allows you to test several scenario
6666
- The number of FIO workers
6767
- The access model (read/write/sequential/random), etc.
6868

69+
70+
Below are some examples of fio commands to validate that the maximum number of IOPS (4000) or the maximum bandwidth (64MB/s) can be reached for a 1TB EFS service:
71+
72+
**Random read - IOPS max**
73+
```
74+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randread -bs=8k -size=1G -time_based -runtime=60 -name=test1 -directory=/share-nfs
75+
```
76+
**Random write - IOPS max**
77+
```
78+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randwrite -bs=8k -size=1G -time_based -runtime=60 -name=test2 -directory=/share-nfs
79+
```
80+
**Random read - Bandwidth max**
81+
```
82+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randread -bs=64k -size=1G -time_based -runtime=60 -name=test3 -directory=/share-nfs
83+
```
84+
**Random write - Bandwidth max**
85+
```
86+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randwrite -bs=64k -size=1G -time_based -runtime=60 -name=test4 -directory=/share-nfs
87+
```
88+
**Sequential read - IOPS max**
89+
```
90+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=read -bs=8k -size=1G -time_based -runtime=60 -name=test5 -directory=/share-nfs
91+
```
92+
**Sequential write - IOPS max**
93+
```
94+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=write -bs=8k -size=1G -time_based -runtime=60 -name=test6 -directory=/share-nfs
95+
```
96+
**Sequential Read - Bandwidth max**
97+
```
98+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=read -bs=64k -size=1G -time_based -runtime=60 -name=test7 -directory=/share-nfs
99+
```
100+
**Sequential write - Bandwidth max**
101+
```
102+
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=write -bs=64k -size=1G -time_based -runtime=60 -name=test8 -directory=/share-nfs
103+
```
104+
69105
For more information, see [the FIO documentation](https://fio.readthedocs.io/en/latest/index.html).
70106

107+
**You can also use other open-source tools such as:**
108+
109+
- [nfsiostat](https://man7.org/linux/man-pages/man8/nfsiostat.8.html)
110+
- [NFStest](https://wiki.linux-nfs.org/wiki/index.php/NFStest)
111+
- [nfstrace](https://github.com/epam/nfstrace)
112+
71113
## Go further
72114

73115
If you need training or technical assistance to implement our solutions, contact your sales representative or click on [this link](/links/professional-services) to get a quote and ask our Professional Services experts for assisting you on your specific use case of your project.

0 commit comments

Comments
 (0)