|
|
|
|
|
by cogman10
1516 days ago
|
|
> I just can't intuitively wrap my head around how tables can grow from 10gb to 100gb and why this wouldnt worsen query performance by x10 Sql server data is stored as a BTree structure. So a 10 -> 100gb growth ends up being roughly a 1/2 query performance slowdown (since it grows by a factor of log n) assuming good indexes are in place. Filtered indexes can work pretty well for improving query performance. But ultimately we do have some tables which are either archived if we can or partitioned if we can't. SQL Server native partitioning is rough if the query patterns are all over the board. The other thing that has helped is we've done a bit of application data shuffling. Moving heavy hitters onto new database servers that aren't as highly utilized. We are currently in the process of getting read only replicas (always on) setup and configured in our applications. That will allow for a lot more load distribution. |
|
EVENTUALLY, yes even read query performance also would degrade, but typically the insert / update load on a typical index is the first limiter.