◐ Shell
clean mode source ↗

feat: Updated Feast model Inference Architecture by franciscojavierarceo · Pull Request #4570 · feast-dev/feast

Looks good. I think the application -> online store can also be async write, just not supported yet. That's something I think we can explore more, as it gives user more flexibility to write to feast directly.

I actually covered some of that in the new architecture section under Communication Patterns.

Communication Patterns

There are two ways a client (or Data Producer) can send data to the online store:

  1. Synchronously
  1. Asynchronously

Note, in some contexts, developers may "batch" a group of entities together and write them to the online store in a single API call. This is a common pattern when writing data to the online store to reduce write loads but we would not qualify this as a batch job.

Let me know if you think I should add some info there. In general, if users are going to do an async write, I think that has different tradeoffs that we want people to be thoughtful about, which is what I tried to say more broadly in that Write Patterns architecture document.