-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Description
Description:
The RefreshWebcalService is responsible for updating calendar subscriptions. Since Nextcloud 30, the updated source is diffed against the local state, and only changes are written back.
Recently, we investigated a system with an unusually large oc_calendarobjects table and recurring deadlocks when removing calendar objects that no longer exist in the source.
Findings:
It turned out that the user had subscribed to a calendar from a Redmine instance. This subscription changed the UID on every request and contained a rather large set of events.
As a result, every time the subscription was refreshed, around 15,000 objects needed to be removed. This process affects the following tables:
- oc_calendarobjects_props
- oc_calendarobjects
- oc_calendarchanges (twice)
Currently, these deletions are handled within a single transaction, significantly increasing the risk of deadlocks.
Suggested Improvement:
To reduce the likelihood of deadlocks, we should consider optimizing how deletions are handled—potentially by breaking them into smaller transactions or batching the deletions more efficiently.
Additional information
Script to simulate such a calendar feed: https://github.com/kesselb/weird-calendars/blob/main/calendar_subscription_with_unstable_uid.php
Metadata
Metadata
Assignees
Labels
Type
Projects
Status