introduction
To improve performance, it is common for DBAs to search in each aspect except analyzing storage subsystem performance even though in many times, issues are, in fact, caused by poor storage subsystem performance. Therefore, I want to give you some tools and recommendation that you can use it to prevent your storage subsystem from being a performance issue for you.
In this article, I will cover how to measure and analyze your storage subsystem performance and how to test your storage subsystem including
- Main metrics for storage performance
- Operating System Tools to measure storage performance
- SQL Server Tools to measure storage performance
- Using SQL Server to test storage performance
Main metrics for storage performance:
In this section I will introduce the three main metrics for the most storage performance issues as follows:
- Latency
Each IO request will take some time to complete this latency is measured in milliseconds (ms) and should be as low as possible - IOPS
IOPS means IO operations per second, which means the amount of reading or write operations that could be done in one second. A certain amount of IO operations will also give a certain throughput of Megabytes each second, so these two are related - Throughputs
The most common value from a disk manufacturer is how much throughput a certain disk can deliver. This number usually expressed in Megabytes / Second (MB/s), and it is simple to believe that this would be the most important factor
For More information please check the source article from HERE