Skip to content
Snippets Groups Projects
Commit 93ca9055 authored by Dan Notestein's avatar Dan Notestein
Browse files

tweaking settings to see if they affect post massivesync call times

parent 981a55f9
No related branches found
No related tags found
1 merge request!849tweaking settings to see if they affect post massivesync call times
......@@ -574,6 +574,7 @@ WHERE table_schema = '{SCHEMA_NAME}' AND table_type = 'BASE TABLE'
if is_initial_massive:
cls.vacuum_tables_in_threads([
f"{SCHEMA_NAME}.hive_posts",
f"{SCHEMA_NAME}.hive_feed_cache",
f"{SCHEMA_NAME}.hive_mentions",
f"{SCHEMA_NAME}.hive_communities",
......
......@@ -734,10 +734,10 @@ 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_follows': (5000, 5000),
# 'hive_feed_cache': (5000, 5000),
# 'hive_reblogs': (5000, 5000),
}
......@@ -753,9 +753,10 @@ ALTER TABLE {SCHEMA_NAME}.{table} SET (autovacuum_vacuum_scale_factor = 0,
def set_fillfactor(db):
"""Initializes/resets FILLFACTOR for tables which are intesively updated"""
"""Initializes/resets FILLFACTOR for tables which are intensively updated"""
fillfactor_config = {'hive_posts': 90, 'hive_post_data': 100, 'hive_votes': 100}
# Lowered fillfactor for hive_votes table in attempt to speed up update_posts_rshares procedure
fillfactor_config = { 'hive_posts': 90, 'hive_post_data': 100, 'hive_votes': 90 }
for table, fillfactor in fillfactor_config.items():
sql = f"ALTER TABLE {SCHEMA_NAME}.{table} SET (FILLFACTOR = {fillfactor});"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment