We have integrated our application with AWS API call for different services. However search/describe on some of the services have high response times (15-20 seconds) like security groups, vpc and subnet search.
ami search/describe takes even more time (>20 S) even for single AMI search.
is it the standard behavior? to meet our guidelines, we are caching some of the data but I am not sure if there is any other solution.
[UPDATE]
Thank you everyone for your suggestions. After investigating little deeper we found couple of issues. Our proxy servers are causing network latency with all external calls. Since AWS describe calls contain more data, we are observing the clear difference in response times compared to all other API interactions. Other problem is wrongly formatted Filter queries. We fixed both of them and able to see good performance improvement. Thank you for your insights.