RDS Sql Server Instance extremely slow - useable

0

We are new to RDS. We have a very small mssql instance setup and it is extremely slow to query or perform tasks. One query that I can run locally that is done in milliseconds is taking 3+ minutes to complete. SSMS is exteremly slow loading the schemas.

I can't imagine this is normal or RDS wouldn't exist.

What is the fix for this?

Scaled
asked 3 months ago254 views
1 Answer
0

Hi, Scaled

The performance of your Amazon RDS for MSSQL instance might be affected for multiple reasons, such as:

  • Undersized hardware
  • Changes in workload
  • Increased traffic
  • Memory issues
  • Suboptimal query plans

Use a combination of these tools to identify the cause of slow-running queries:

  • Performance Insights metrics (in RDS)
  • Amazon CloudWatch metrics
  • Enhanced Monitoring metrics
  • Database statistics
  • Native database tools
  • CloudWatch metrics

To identify performance bottlenecks caused by insufficient resources, monitor these common CloudWatch metrics available for your Amazon RDS DB instance.

  • CPUUtilization - Percentage of computer processing capacity used
  • FreeableMemory - Available RAM on the DB instance
  • SwapUsage - Swap space used by the DB instance

A higher percentage of CPU utilization generally indicates an active workload on the instance and the need for more CPU resources. Higher memory utilization along with swap space consumption indicates frequent swapping due to low memory availability for the workload. This might mean that your instance can't keep up with the workload. A high utilization of CPU and memory resources are typically caused by long-running queries, suddenly increased traffic, or a large number of idle connections.

If any of the above metrics are showing signs of peaking or exceeding their threshold, you may need to increase the size of the very small MSSQL instance to a larger one that is optimized for the performance area in question (CPU, memory, I/O throughput, network).

If this helps solve your problem, please choose this as the Accepted Answer so others on re:Post may benefit - thank you!

profile pictureAWS
answered 3 months ago
profile picture
EXPERT
reviewed 3 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions