|
|
|
|
|
by jedberg
538 days ago
|
|
> With all respect and love to the OP, I must admit that I laughed out loud when I saw the AWS architectural diagram OP actually did it more efficiently than most! You should see the AWS suggested architecture. It uses something like 10 different AWS services. My company actually set out to solve this very problem. We have a cloud cron hosting that's more reliable than the AWS architecture but just requires a few lines of code. Literally this is all you have to do: @DBOS.scheduled('* * * * *')
@DBOS.workflow()
def example_scheduled_workflow(scheduled_time: datetime, actual_time: datetime):
DBOS.logger.info("I am a workflow scheduled to run once a minute.")
https://github.com/dbos-inc/dbos-demo-apps/blob/main/python/... |
|