1 réponse
- Le plus récent
- Le plus de votes
- La plupart des commentaires
0
Since running multiple queries simultaneously (8 in your case) leads to throttling, try reducing the number of concurrent queries. Start by running fewer queries at a time, such as 2 or 3, and gradually increase while monitoring for throttling exceptions.
💡 If you need to run multiple queries, batch them to reduce the number of concurrent queries. This can help avoid rate limits.
Contenus pertinents
- demandé il y a un an
- demandé il y a 6 mois
- demandé il y a 9 mois
- AWS OFFICIELA mis à jour il y a 2 ans
- AWS OFFICIELA mis à jour il y a 3 ans
- AWS OFFICIELA mis à jour il y a 2 ans
- AWS OFFICIELA mis à jour il y a 2 ans
Okay, thanks for your answer, Osvaldo. Do you know which limit can I check in AWS that is raising those throttling exceptions?
For Amazon Athena, you can check the service quotas under Per Account API Call Quotas. The default limits are:
StartQueryExecution
andStopQueryExecution
: 20 calls per secondGetQueryExecution
andGetQueryResults
: 100 calls per second