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
fca3d110
Commit
fca3d110
authored
4 years ago
by
Bartek Wrona
Browse files
Options
Downloads
Patches
Plain Diff
Fixed setting children count for each posts (at the end of initial sync)
parent
bc0ecee4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
4 merge requests
!456
Release candidate v1 24
,
!230
Setup monitoring with pghero
,
!135
Enable postgres monitoring on CI server
,
!41
Consender api fixes
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hive/db/db_state.py
+6
-0
6 additions, 0 deletions
hive/db/db_state.py
hive/db/schema.py
+38
-0
38 additions, 0 deletions
hive/db/schema.py
with
44 additions
and
0 deletions
hive/db/db_state.py
+
6
−
0
View file @
fca3d110
...
@@ -174,6 +174,12 @@ class DbState:
...
@@ -174,6 +174,12 @@ class DbState:
index
.
create
(
engine
)
index
.
create
(
engine
)
# Update count of all child posts (what was hold during initial sync)
sql
=
"""
select update_hive_posts_children_count()
"""
row
=
DbState
.
db
().
query_row
(
sql
)
# TODO: #111
# TODO: #111
#for key in cls._all_foreign_keys():
#for key in cls._all_foreign_keys():
# log.info("Create fk %s", key.name)
# log.info("Create fk %s", key.name)
...
...
This diff is collapsed.
Click to expand it.
hive/db/schema.py
+
38
−
0
View file @
fca3d110
...
@@ -650,6 +650,44 @@ def setup(db):
...
@@ -650,6 +650,44 @@ def setup(db):
"""
"""
db
.
query_no_return
(
sql
)
db
.
query_no_return
(
sql
)
sql
=
"""
DROP FUNCTION if exists update_hive_posts_children_count()
;
CREATE OR REPLACE FUNCTION update_hive_posts_children_count()
RETURNS VOID
LANGUAGE plpgsql
AS
$function$
BEGIN
update hive_posts uhp
set children = data_source.childrencount
from
(
WITH RECURSIVE ChildrenCTE AS (
SELECT ID as RootId, ID
FROM hive_posts hp
where hp.parent_id != 0
UNION ALL
SELECT cte.RootID, d.ID
FROM ChildrenCTE cte
INNER JOIN hive_posts d ON d.parent_id = cte.ID
)
SELECT d.ID, d.parent_id, cnt.ChildrenCount
FROM hive_posts d
INNER JOIN (
SELECT RootID as ID, COUNT(*) - 1 as ChildrenCount
FROM ChildrenCTE
GROUP BY RootID
) cnt ON cnt.ID = d.ID
) as data_source
where uhp.id = data_source.id
;
END
$function$
"""
db
.
query_no_return
(
sql
)
def
reset_autovac
(
db
):
def
reset_autovac
(
db
):
"""
Initializes/resets per-table autovacuum/autoanalyze params.
"""
Initializes/resets per-table autovacuum/autoanalyze params.
...
...
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