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 réponse
0
Réponse acceptée

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
EXPERT
achraf
répondu il y a 4 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions