1 Answer
- Newest
- Most votes
- Most comments
0
Hi User,
You will need to set up an automated workflow to continuously ingest the latest data and make predictions with the new data. As this is a time series problem, it can only make predictions with the most recent x timeframe of data. Here is an Architecture that suggests how such a workflow can be setup on AWS
Link to the blogpost: https://docs.aws.amazon.com/forecast/latest/dg/tutorial-cloudformation.html
Minimally, you should have the following setup:
- Publishing of new data into S3
- Lambda function that get triggers when new object is put into S3, make predictions with the new data, and send it to SNS
- Your applications can subscribe to the SNS to receive the next time period's prediction
You can enhance your workflow to continuously train and evaluate your model, or integrate with other services for analysis etc as shown in the diagram.
Hope this information is helpful in your exploration of setting up an automated forecasting workflow on AWS!
Relevant content
- asked 2 years ago
- asked 10 months ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 5 months ago
- AWS OFFICIALUpdated 2 months ago
Thanks, junkai. The link actually points to this post, not to the article you mentioned.
I have fixed the link, you may try again. thanks!