Add card id cache for use during inserting of new cards with clustered dbs #28303
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.
Description
When running the
federation:sync-addressbookocccommand on a large instance with many users and utilising a DB cluster, there is an issue in thecreateCard()method. It first inserts the command tooc_cardsand then runsupdateProperties()to create the properties but this method triggersgetCardId()which does a select to the DB to get the ID of the card it just inserted - this is failing on clusters where the write has not yet synced.In this PR I just cache the uri->id so that it can be utilised in the
updatePropertiesmethod.This should also remove 1 select to the DB per new user synchronised during the command.
CardDavBackend::createCard()updateProperties()getCardId()Related Issue
If you run the
sync-addressbookcommand on a big instance with a DB cluster it fails repeatedly when theSELECTfails, meaning the command must be restarted numerous times.Motivation and Context
This should work without having to restart the command >20 times.
How Has This Been Tested?
Local unit tests. 2 local servers running non-clustered DBs.
Types of changes
Checklist: