Venkat Ramakrishnan
09/01/2022, 1:59 PMdeployment = Deployment.build_from_flow(flow_name=workflow_orchestration,\
name="Workflow Orchestration", \
version="1", tags=["Iris"],\
schedule={'interval': 600, 'timezone': "Asia/Kolkata"})
I want to provide schedules like every hour, once in a week, once in a month, etc. In CLI, I saw something like --rrule option for frequency-based scheduling. What is the equivalent option in Python? I searched online, but I could not find a comprehensive documentation that explains with examples. Thanks!
Thread in Slack ConversationJeff Hale
09/01/2022, 2:04 PM