khepri_machine: Use process dict instead of persistent_term to track the need for a fence preliminary query#317
Merged
Conversation
... as the arbitrary fence preliminary query. [Why] It allows to distinguish it from the other arbitrary query used in `fence/2` during debugging session.
... to track the need for a fence preliminary query. [Why] There was a small bug with our use of the persistent_term: it should have been a key per store ID and process PID combination, not just per store ID. But anyway, a persistent_term is designed for a value that is mostly read, rarely written to. This was not the case here. [How] I thought about using an ETS table instead but it had a problem: if the calling process is on a different node that the one running Khepri, Khepri can't create an ETS table on that remote node. Each call could initialize that table if it didn’t exist, but this would be too much overhead in that code path to my taste. Moreover, we would have to put in place a cleaning mechanism for processes that exited if they still had an entry in that ETS table. The solution retained is the use of the calling process dictionary. It is fast, can handle frequent updates and will be automatically cleaned up when the process exits. It also does not need an initial setup.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #317 +/- ##
==========================================
+ Coverage 89.14% 89.20% +0.06%
==========================================
Files 22 22
Lines 3299 3299
==========================================
+ Hits 2941 2943 +2
+ Misses 358 356 -2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
There was a small bug with our use of the persistent_term: it should have been a key per store ID and process PID combination, not just per store ID.
But anyway, a persistent_term is designed for a value that is mostly read, rarely written to. This was not the case here.
How
I thought about using an ETS table instead but it had a problem: if the calling process is on a different node that the one running Khepri, Khepri can't create an ETS table on that remote node. Each call could initialize that table if it didn’t exist, but this would be too much overhead in that code path to my taste. Moreover, we would have to put in place a cleaning mechanism for processes that exited if they still had an entry in that ETS table.
The solution retained is the use of the calling process dictionary. It is fast, can handle frequent updates and will be automatically cleaned up when the process exits. It also does not need an initial setup.