From 86a1962b1b332d02c42a18da1eaa771a4da445c8 Mon Sep 17 00:00:00 2001 From: Dan Notestein <dan@syncad.com> Date: Thu, 30 Jan 2025 19:29:07 -0500 Subject: [PATCH] re-instate overrides on two tables where it seems to make a difference, analyze more after --- hive/db/schema.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hive/db/schema.py b/hive/db/schema.py index 6624500b6..13f0d3cd6 100644 --- a/hive/db/schema.py +++ b/hive/db/schema.py @@ -462,7 +462,7 @@ def setup(db, admin_db): build_metadata().create_all(db.engine()) # tune auto vacuum/analyze - # Disable special autovacuum at least for massive sync reset_autovac(db) + reset_autovac(db) # sets FILLFACTOR: set_fillfactor(db) @@ -773,12 +773,12 @@ def reset_autovac(db): per-table, in the format (autovacuum_threshold, autoanalyze_threshold).""" autovac_config = { # vacuum analyze - 'hive_accounts': (50000, 100000), +# 'hive_accounts': (50000, 100000), 'hive_posts': (2500, 10000), 'hive_post_tags': (5000, 10000), - 'hive_follows': (5000, 5000), - 'hive_feed_cache': (5000, 5000), - 'hive_reblogs': (5000, 5000), +# 'hive_follows': (5000, 5000), +# 'hive_feed_cache': (5000, 5000), +# 'hive_reblogs': (5000, 5000), } for table, (n_vacuum, n_analyze) in autovac_config.items(): -- GitLab