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 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则