1 Answer
- Newest
- Most votes
- Most comments
0
Hi!
As a first recommendation try to have your dev an production environment in different AWS accounts. About the slowness itself, you need to understand where is the bottle neck.
- Check AWS Compute Optimizer service too check if the instance or the EBS disk need more performance, its free [1].
- Enable detailed monitoring for your prod instance [2]
- Try to use disk GP3 in case you are using GP2
- Depending on your architecture try to use Amazon Cloudfront as a CDN and to use the amazon network to reach the region.
good luck!
[1] https://aws.amazon.com/compute-optimizer/ [2] https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch-metrics-basic-detailed.html
answered 9 months ago
Relevant content
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 2 months ago
- AWS OFFICIALUpdated 2 months ago
- AWS OFFICIALUpdated 2 months ago
Thank you for your answer.
Additionally, add some debug logging into the app to see where the slowdown is. You need to isolate out if its the app itself; database lookup; etc.