The page you navigated to () does not exist, so we brought you to the closest page to it.
You have switched from the to the variant of this site. There is no equivalent of . We have taken you to the closest page in the variant.
2.1.7
FixedRate
Package: flyte
Fixed-rate (interval-based) automation schedule for use with Trigger.
Unlike Cron, which runs at specific clock times, FixedRate runs at a
consistent interval regardless of clock time.
my_trigger = flyte.Trigger(
name="my_fixed_rate_trigger",
automation=flyte.FixedRate(60), # Runs every 60 minutes
description="A trigger that runs every hour",
)Parameters
class FixedRate(
interval_minutes: int,
start_time: datetime | None,
)| Parameter | Type | Description |
|---|---|---|
interval_minutes |
int |
Interval between trigger activations, in minutes (e.g., 60 for hourly, 1440 for daily). |
start_time |
datetime | None |
Optional start time for the first trigger. Subsequent triggers follow the interval from this point. If not set, the first trigger occurs interval_minutes after deployment/activation. |