Track downloaded operations in ps_buckets
#68
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.
This alters the
ps_buckets
table to add two new columns:count_at_last
: The amount of operations expected in a bucket, as received from the sync service. Set by client SDKs when completing a checkpoint.count_since_last
: The amount of operations downloaded since the last full checkpoint. This is set by the core extension when receiving an update batch.Having this information available allows client SDKs to calculate the progress we've made (we can display the total target as
new_checkpoint.$bucket.count - ps_buckets.$bucket.count_at_last
and the current progress asps_buckets.$bucket.count_since_last
).I have considered setting
count_at_last
insync_local
(by just addingcount_since_last
to it, and then resettingcount_since_last
). However, I didn't like the possibility ofcount_at_last
ever going out of sync with thecount
value the sync service gives us for buckets. That shouldn't be possible because we only sync local data when we have received all operations, but applying the value straight from the source still sounds more reliable to me.Since I sometimes loose sight of which table does what in the core extension, I've also started a document in
docs/
that's supposed to explain the role of local data eventually. It only mentions parts ofps_buckets
for now, maybe we can expand on that further in the future.