Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hivemind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
hivemind
Commits
93ca9055
Commit
93ca9055
authored
1 month ago
by
Dan Notestein
Browse files
Options
Downloads
Patches
Plain Diff
tweaking settings to see if they affect post massivesync call times
parent
981a55f9
No related branches found
No related tags found
1 merge request
!849
tweaking settings to see if they affect post massivesync call times
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hive/db/db_state.py
+1
-0
1 addition, 0 deletions
hive/db/db_state.py
hive/db/schema.py
+5
-4
5 additions, 4 deletions
hive/db/schema.py
with
6 additions
and
4 deletions
hive/db/db_state.py
+
1
−
0
View file @
93ca9055
...
...
@@ -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
"
,
...
...
This diff is collapsed.
Click to expand it.
hive/db/schema.py
+
5
−
4
View file @
93ca9055
...
...
@@ -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 inte
n
sively 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
}
);
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment