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
Currently, when a node gets a request for an image it doesn’t have, it will go through all its neighbors looking for a copy. In the case of a ‘true’ 404 where the image isn’t in the cluster at all, that’s expensive. A bloom filter tracking all images that the cluster has seen could let us cut our losses quicker and give the user a 404 without having to poll every single node.
The text was updated successfully, but these errors were encountered:
Currently, when a node gets a request for an image it doesn’t have, it will go through all its neighbors looking for a copy. In the case of a ‘true’ 404 where the image isn’t in the cluster at all, that’s expensive. A bloom filter tracking all images that the cluster has seen could let us cut our losses quicker and give the user a 404 without having to poll every single node.
The text was updated successfully, but these errors were encountered: