[FEATURE] I'd like to schedule a workflow to run at a specific time
See original GitHub issueWe frequently see use cases arise for scheduling one-time jobs at a specific timestamp. For example, you may want to send your users an email exactly 2 hours after they sign up - you need a way to schedule a specific message, at a specific timestamp. You could send a message to this service using a format like:
{
"timestamp": "2020-08-21T04:29:00.951Z",
"message": { "name": "Luke", "email": "luke@jedi.com" }
}
Note: you can run a task scheduling service like this in your own AWS account, and have it trigger a Pipedream workflow, using this Pipedream event source.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:30 (28 by maintainers)
Top Results From Across the Web
Schedule Workflow to turn on at specific time and date
I should be able to schedule the Workflow to turn on at Tues 10am PST if I want to. Why is this currently...
Read more >Schedule Workflows
Complete the schedule date and time details. Scheduled workflows run at the scheduled time in the time zones in which the server is...
Read more >Scheduled Workflows
Scheduling a workflow First, you build an API workflow as per your needs. Next you schedule your API workflow to run at...
Read more >Scheduling Workflows Example
A fixed-rate scheduler runs at the specified interval. This fixed-rate scheduler runs every ten minutes.
Read more >What is a Schedule | Temporal Documentation
A Schedule contains instructions for starting a Workflow Execution at specific times. Schedules provide a more flexible and user-friendly approach than ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@nachocab I can confirm and we’re looking into it.
@nachocab currently test events for event sources are hardcoded globally, and aren’t source-specific. Since that payload isn’t of the format the task scheduler expects, and since the HTTP request is made to the
/
path and not the/schedule
path, that test event isn’t expected to work.Just to confirm, if you send a request of the right format to the
/schedule
path, does that work?We want to support test events that are bespoke to a given source, which should make this experience better in the future.