AWS Lambda无服务器“计划”事件创建错误:LimitExceededException

时间:2018-08-22 21:39:39

标签: aws-lambda serverless-framework serverless

尝试sls deploy事件schedule的功能时遇到以下错误:

An error occurred: SupWorldEventsRuleSchedule1 - The requested 
resource exceeds the maximum number allowed. (Service: 
AmazonCloudWatchEvents; Status Code: 400; Error Code: 
LimitExceededException; Request ID: f39cee40-a651-11e8-a111-97a9e3d0f938).

配置:

functions:
  supWorld:
    handler: dist/handlers/index.helloWorld
    events:
      - schedule:
          rate: cron(*/10 * * * ? *)
          enabled: true

此错误的奇怪方面是,没有其他schedule事件与此lambda堆栈相关联。

1 个答案:

答案 0 :(得分:2)

您的帐户中已经有多少个Cloudwatch规则?默认情况下,您只能有100个:https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/cloudwatch_limits_cwe.html

如果我不得不猜测错误是由于您已达到帐户限制而发生的