Hello Feast Developers,
I want to implement Feast in my place to unify our features. Currently we have usecase that given 100 product_id, sort from product that will likely clicked by user_id. It means and 1 request will hit Feast Serving API 100 times, and if the usecase RPS is 100 RPS, it means 10.000 RPS in Feast Serving API.
How can we make sure that Feast Serving API can handle all this request? Do Feast have solution to this problem?
Another concern is, can we separate the serving layer per usecase? Let say redis A is used by usecase A and redis B for usecase B. This is to make sure when 1 usecase have increased traffic, it won't affect the other.
Thank you for your answer ^^