Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update README with EventBridge Scheduler #597

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Serverless Framework v2.32.0 or later is required.
- [Specify Name and Description](#specify-name-and-description)
- [Scheduled Events IAM Role](#scheduled-events-iam-role)
- [Specify InputTransformer](#specify-inputtransformer)
- [Use EventBridge Scheduler instead of EventBridge rules](#use-eventbridge-scheduler-instead-of-eventbridge-rules)
- [CloudWatch Event](#cloudwatch-event)
- [Simple event definition](#simple-event-definition)
- [Enabling / Disabling](#enabling--disabling-1)
Expand Down Expand Up @@ -1099,6 +1100,26 @@ stepFunctions:
...
```

#### Use EventBridge Scheduler instead of EventBridge rules

AWS has account-wide limits on the number of `AWS::Event::Rule` triggers per bus (300 events), and all Lambda schedules go into a single bus with no way to override it. This can lead to a situation where large projects hit the limit with no ability to schedule more events.

However, `AWS::Scheduler::Schedule` has much higher limits (1,000,000 events), and is configured identically. `method` can be set in order to migrate to this trigger type seamlessly. It also allows you to specify a timezone to run your event based on local time.

```yml
stepFunctions:
stateMachines:
stateMachineScheduled:
events:
- schedule:
method: scheduler
rate: cron(30 12 ? * 1-5 *)
enabled: true
timezone: America/New_York
definition:
...
```

### CloudWatch Event / EventBridge

#### Simple event definition
Expand Down