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
Today all volumes that are processed travel through a filter that performs KV lookups. Doing these in the fashion that must be done can be very expensive. An idea here could be to introduce a caching layer that sits above the KV store to ensure all lookups occur from memory instead.
This is starkly different than any proposal that introduces a caching layer that would sit in front of the backend libStorage queries for authoritative storage platform information.
The text was updated successfully, but these errors were encountered:
This also introduces a front end challenge where since the KV is no longer completely authoritative for Polly, then HA solutions that are coordinated at higher levels are much more important.
Added the beginnings of benchmark tests for KV store. Will need this in order to see if we are improving the performance (or not). The idea is that any insert or update you have no choice but to take the hit, so all performance testing is looking to improve queries only.
Today all volumes that are processed travel through a filter that performs KV lookups. Doing these in the fashion that must be done can be very expensive. An idea here could be to introduce a caching layer that sits above the KV store to ensure all lookups occur from memory instead.
This is starkly different than any proposal that introduces a caching layer that would sit in front of the backend libStorage queries for authoritative storage platform information.
The text was updated successfully, but these errors were encountered: