从命令行提交 aws emr 作业时出错

Error while submitting aws emr job from command line

我遇到了以下错误形式 aws emr。我已经从 cli 提交了作业。作业状态为待处理。

A client error (ThrottlingException) occurred when calling the ListSteps operation: Rate exceeded

如何查看 emr 集群中的所有活动作业以及如何从 cli 以及 aws 控制台中终止它们。

问候 桑吉布

AWS API 有速率限制。根据 AWS 文档,处理节流响应的推荐方法是在重试逻辑中实现指数退避,这意味着当您收到 ThrottlingException 时尝试捕获它并休眠一段时间,比如半秒,然后重试 ...