You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feast uses a [Push Model](https://en.wikipedia.org/wiki/Push_technology) (i.e., the feature store pushes feature values to the online store) to serve features in
4
+
real-time. This model is more efficient than a pull model (i.e., the model serving system pulls feature values from the
5
+
feature store) because it reduces the latency of feature retrieval.
6
+
7
+
In a [Pull Model](https://en.wikipedia.org/wiki/Pull_technology), the model serving system must make
8
+
a request to the feature store to retrieve feature values, which can introduce latency. In a push model, the feature
9
+
store pushes feature values to the online store, which reduces the latency of feature retrieval.
0 commit comments