Best way to do low-latency lookups for ML model prediction caching?

0

I'd like to increase AWS posture on ML model prediction caching. Let's say we want to serve a lookup table upstream of a REST API that contains past predictions, and look it up at every prediction to avoid re-running through the model when a given input-output pair has already been computed. It's ok to wait several minutes between cache updates and typical TTL could be between minutes and days. What is the best way to do that in AWS?

  1. Use the caching functionality of API GW?
  2. Use a warm Lambda@Edge that locally has a lookup file with past predictions?
  3. Use DAX or Elasticache upstream of the model call? Is there a way to have DAX or Elasticache live at the edge?
1 個回答
0
已接受的答案

You can use CloudFront in front of your API to cache HTTP responses according to the Cache-Control header sent by your origin. Please note that this would only work for GET/HEAD HTTP requests.

profile pictureAWS
專家
achraf
已回答 4 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南