-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(server): Move bumpup logic out of FindInternal #4877
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -355,20 +355,9 @@ SliceEvents& SliceEvents::operator+=(const SliceEvents& o) { | |
|
||
class DbSlice::PrimeBumpPolicy { | ||
public: | ||
PrimeBumpPolicy(absl::flat_hash_set<uint64_t, FpHasher>* items) : fetched_items_(items) { | ||
} | ||
|
||
// returns true if we can change the object location in dash table. | ||
bool CanBump(const CompactObj& obj) const { | ||
if (obj.IsSticky()) { | ||
return false; | ||
} | ||
auto hc = obj.HashCode(); | ||
return fetched_items_->insert(hc).second; | ||
return !obj.IsSticky(); | ||
} | ||
|
||
private: | ||
mutable absl::flat_hash_set<uint64_t, FpHasher>* fetched_items_; | ||
}; | ||
|
||
DbSlice::DbSlice(uint32_t index, bool cache_mode, EngineShard* owner) | ||
|
@@ -565,21 +554,9 @@ auto DbSlice::FindInternal(const Context& cntx, string_view key, optional<unsign | |
} | ||
|
||
DCHECK(IsValid(res.it)); | ||
if (IsCacheMode()) { | ||
if (!change_cb_.empty()) { | ||
auto bump_cb = [&](PrimeTable::bucket_iterator bit) { | ||
CallChangeCallbacks(cntx.db_index, key, bit); | ||
}; | ||
db.prime.CVCUponBump(change_cb_.back().first, res.it, bump_cb); | ||
} | ||
|
||
// We must not change the bucket's internal order during serialization | ||
serialization_latch_.Wait(); | ||
auto bump_it = db.prime.BumpUp(res.it, PrimeBumpPolicy{&fetched_items_}); | ||
if (bump_it != res.it) { // the item was bumped | ||
res.it = bump_it; | ||
++events_.bumpups; | ||
} | ||
if (IsCacheMode()) { | ||
fetched_items_.insert({res.it->first.HashCode(), cntx.db_index, key}); | ||
} | ||
|
||
switch (stats_mode) { | ||
|
@@ -1714,10 +1691,37 @@ void DbSlice::PerformDeletion(Iterator del_it, DbTable* table) { | |
PerformDeletionAtomic(del_it, exp_it, table); | ||
} | ||
|
||
void DbSlice::OnCbFinish() { | ||
// TBD update bumpups logic we can not clear now after cb finish as cb can preempt | ||
// btw what do we do with inline? | ||
fetched_items_.clear(); | ||
void DbSlice::OnCbFinishBlocking() { | ||
if (IsCacheMode()) { | ||
// move fetched items to local variable | ||
auto moved_fetched_items_ = std::move(fetched_items_); | ||
for (const auto& [key_hash, db_index, key] : moved_fetched_items_) { | ||
auto& db = *db_arr_[db_index]; | ||
|
||
auto predicate = [&key](const PrimeKey& key_) { return key_ == key; }; | ||
|
||
PrimeIterator it = db.prime.FindFirst(key_hash, predicate); | ||
|
||
if (!IsValid(it)) { | ||
continue; | ||
} | ||
|
||
if (!change_cb_.empty()) { | ||
auto bump_cb = [&](PrimeTable::bucket_iterator bit) { | ||
CallChangeCallbacks(db_index, key, bit); | ||
}; | ||
db.prime.CVCUponBump(change_cb_.back().first, it, bump_cb); | ||
} | ||
|
||
// We must not change the bucket's internal order during serialization | ||
serialization_latch_.Wait(); | ||
auto bump_it = db.prime.BumpUp(it, PrimeBumpPolicy{}); | ||
mkaruza marked this conversation as resolved.
Show resolved
Hide resolved
|
||
if (bump_it != it) { // the item was bumped | ||
++events_.bumpups; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lets add to our replication,snapshot pytests that we have for cache mode to check the bumpup counter, make sure that it is bigger than 0, to make sure we are still bumping items There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have added pytest that checks few conditions for bumpups |
||
} | ||
} | ||
fetched_items_.clear(); | ||
} | ||
|
||
if (!pending_send_map_.empty()) { | ||
SendQueuedInvalidationMessages(); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you do not comparing to
key
, you can just return true here.The point is that it's not critical that once in a billion chance you have a collision and you bump up something else
so you can remove
key
fromfetched_items_
tupleThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll remove and add extra comment for this decision.