diff options
author | Richard van der Hoff <github@rvanderhoff.org.uk> | 2018-02-14 16:59:03 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-14 16:59:03 +0000 |
commit | d28ec43e15ac226013fb728eb93cc5ec86a24006 (patch) | |
tree | 0853d13bd06f83d35b55e57836668113e48c89e7 /synapse/storage/background_updates.py | |
parent | Merge pull request #2854 from matrix-org/erikj/event_create_worker (diff) | |
parent | remove overzealous exception handling (diff) | |
download | synapse-d28ec43e15ac226013fb728eb93cc5ec86a24006.tar.xz |
Merge pull request #2769 from matrix-org/matthew/hit_the_gin
switch back from GIST to GIN indexes
Diffstat (limited to 'synapse/storage/background_updates.py')
-rw-r--r-- | synapse/storage/background_updates.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/synapse/storage/background_updates.py b/synapse/storage/background_updates.py index 11a1b942f1..c88759bf2c 100644 --- a/synapse/storage/background_updates.py +++ b/synapse/storage/background_updates.py @@ -242,6 +242,25 @@ class BackgroundUpdateStore(SQLBaseStore): """ self._background_update_handlers[update_name] = update_handler + def register_noop_background_update(self, update_name): + """Register a noop handler for a background update. + + This is useful when we previously did a background update, but no + longer wish to do the update. In this case the background update should + be removed from the schema delta files, but there may still be some + users who have the background update queued, so this method should + also be called to clear the update. + + Args: + update_name (str): Name of update + """ + @defer.inlineCallbacks + def noop_update(progress, batch_size): + yield self._end_background_update(update_name) + defer.returnValue(1) + + self.register_background_update_handler(update_name, noop_update) + def register_background_index_update(self, update_name, index_name, table, columns, where_clause=None, unique=False, |