We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This issue has been migrated from #5888.
A number of 'stream' tables are appended-to, but are never cleared out. Such tables include:
cache_invalidation_stream_by_instance
device_lists_changes_in_room
The text was updated successfully, but these errors were encountered:
Personally, I'd like us to refactor the replication streams so that we don't need these tables in the first place: #13456
Sorry, something went wrong.
No branches or pull requests
This issue has been migrated from #5888.
A number of 'stream' tables are appended-to, but are never cleared out. Such tables include:
cache_invalidation_stream_by_instance(fixed by Remove old rows from thecache_invalidation_stream_by_instance
table automatically. (This table is not used when Synapse is configured to use SQLite.) matrix-org/synapse#15868)presence_stream(does get cleaned out; has been ever since its creation in Rewrite presence for performance. matrix-org/synapse#582)device_inbox(not really a 'stream' table actually, so a separate problem: device_inbox never gets emptied #3599)local_group_updates(removed in Drop tables used for groups/communities. matrix-org/synapse#12967)public_room_list_stream(now removed)device_lists_changes_in_room
(probably not really a stream table, Clear outdevice_lists_changes_in_room
table periodically. #13043)The text was updated successfully, but these errors were encountered: