GPCHECKPERF |
|||||
Date/Time (approx.) |
Source |
Destination |
Size |
Servers |
Rate |
22/07 - 10:30 |
/dev/zero |
/data1/primary/../ddfile |
64GB |
srv48 |
255.16 MB/s |
srv49 |
309.58 MB/s |
||||
srv50 |
315.74 MB/s |
||||
22/07 - 10:45 |
/data1/primary/../ddfile |
/dev/null |
64GB |
srv48 |
69.41 MB/s |
srv49 |
70.24 MB/s |
||||
srv48 |
73.69 MB/s |
||||
MANUAL |
|||||
22/07 - 11:15 |
/dev/zero |
/data1/primary/ddfile |
64GB |
srv48 |
934 MB/s |
srv49 |
917 MB/s |
||||
srv50 |
917 MB/s |
||||
22/07 - 11:50 |
/data1/primary/ddfile |
/dev/null |
64GB |
srv48 |
64 MB/s |
srv49 |
60.8 MB/s |
||||
srv50 |
60.9 MB/s |
||||
22/07 - 11:50 |
/data1/primary/ddfile.64GB_fallocate |
/dev/null |
64GB |
srv48 |
2.5 GB/s |
srv49 |
2.4 GB/s |
||||
srv50 |
2.5 GB/s |
--
You received this message because you are subscribed to the Google Groups "Greenplum Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gpdb-users+...@greenplum.org.
To post to this group, send email to gpdb-...@greenplum.org.
Visit this group at https://groups.google.com/a/greenplum.org/group/gpdb-users/.
For more options, visit https://groups.google.com/a/greenplum.org/d/optout.
The use of dd goes back to the *very* early (Metapa?) days and should have been ditched by now.
For DW databases we need disks that can sustain high *random* read rates. dd measures *sequential* read rates, which is not what we want. Gpcheckperf gives a totally misleading disk IO reading by using dd.
We settled on fio instead of dd to test disk performance. This allows random read IOPS with 32kb block size to be tested. This is what is needed for good GPDB performance. No amount of CPU/RAM will overcome poor disk IOPS.
High random read IOPS are much harder to deliver than high sequential read IOPS, unfortunately.