We are getting Throttling Exception by AWS via Parameter Store.
https://aws.amazon.com/premiumsupport/knowledge-center/ssm-parameter-store-rate-exceeded/
Possible Options
- We can probably increase the number of parameters retrieved to 10.
|
params = await ssm.getParametersByPath(config).promise() |
- Implement memory caching.
Have an internal map if the service value already present in the map, return that, else retrieve via API call.

We are getting Throttling Exception by AWS via Parameter Store.
https://aws.amazon.com/premiumsupport/knowledge-center/ssm-parameter-store-rate-exceeded/
Possible Options
config-wrapper/src/lib/awsManager.js
Line 66 in 122e25a
Have an internal map if the service value already present in the map, return that, else retrieve via API call.