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
7810505b
Commit
7810505b
authored
4 years ago
by
Dariusz Kędzierski
Committed by
Mariusz Trela
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Proposal of the fix for performance issue
parent
8964861d
No related branches found
Branches containing commit
No related tags found
4 merge requests
!456
Release candidate v1 24
,
!230
Setup monitoring with pghero
,
!135
Enable postgres monitoring on CI server
,
!61
Issue #47 - test database_api get_payout_stats fail
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hive/indexer/blocks.py
+4
-0
4 additions, 0 deletions
hive/indexer/blocks.py
hive/indexer/posts.py
+20
-18
20 additions, 18 deletions
hive/indexer/posts.py
with
24 additions
and
18 deletions
hive/indexer/blocks.py
+
4
−
0
View file @
7810505b
...
@@ -91,6 +91,10 @@ class Blocks:
...
@@ -91,6 +91,10 @@ class Blocks:
cls
.
_flush_blocks
()
cls
.
_flush_blocks
()
Follow
.
flush
(
trx
=
False
)
Follow
.
flush
(
trx
=
False
)
step_time
=
perf_counter
()
Posts
.
flush
()
log
.
info
(
"
[PROCESS MULTI] Comment payment flush in %fs
"
,
perf_counter
()
-
step_time
)
DB
.
query
(
"
COMMIT
"
)
DB
.
query
(
"
COMMIT
"
)
time_end
=
perf_counter
()
time_end
=
perf_counter
()
log
.
info
(
"
[PROCESS MULTI] %i blocks in %fs
"
,
len
(
blocks
),
time_end
-
time_start
)
log
.
info
(
"
[PROCESS MULTI] %i blocks in %fs
"
,
len
(
blocks
),
time_end
-
time_start
)
...
...
This diff is collapsed.
Click to expand it.
hive/indexer/posts.py
+
20
−
18
View file @
7810505b
...
@@ -30,6 +30,8 @@ class Posts:
...
@@ -30,6 +30,8 @@ class Posts:
_hits
=
0
_hits
=
0
_miss
=
0
_miss
=
0
_comment_payout_ops
=
[]
@classmethod
@classmethod
def
last_id
(
cls
):
def
last_id
(
cls
):
"""
Get the last indexed post id.
"""
"""
Get the last indexed post id.
"""
...
@@ -146,8 +148,7 @@ class Posts:
...
@@ -146,8 +148,7 @@ class Posts:
cls
.
_insert_feed_cache
(
result
,
block_date
)
cls
.
_insert_feed_cache
(
result
,
block_date
)
@classmethod
@classmethod
def
comment_payout_op
(
cls
,
ops
,
date
):
def
flush
(
cls
):
ops_stats
=
{}
sql
=
"""
sql
=
"""
UPDATE hive_posts AS ihp SET
UPDATE hive_posts AS ihp SET
total_payout_value = COALESCE( data_source.total_payout_value, ihp.total_payout_value ),
total_payout_value = COALESCE( data_source.total_payout_value, ihp.total_payout_value ),
...
@@ -202,9 +203,23 @@ class Posts:
...
@@ -202,9 +203,23 @@ class Posts:
INNER JOIN hive_permlink_data hpd_p ON hpd_p.permlink = t.permlink
INNER JOIN hive_permlink_data hpd_p ON hpd_p.permlink = t.permlink
) as data_source(author_id, permlink_id, total_payout_value)
) as data_source(author_id, permlink_id, total_payout_value)
WHERE ihp.permlink_id = data_source.permlink_id and ihp.author_id = data_source.author_id
WHERE ihp.permlink_id = data_source.permlink_id and ihp.author_id = data_source.author_id
"""
"""
def
chunks
(
lst
,
n
):
"""
Yield successive n-sized chunks from lst.
"""
for
i
in
range
(
0
,
len
(
lst
),
n
):
yield
lst
[
i
:
i
+
n
]
for
chunk
in
chunks
(
cls
.
_comment_payout_ops
,
1000
):
values_str
=
'
,
'
.
join
(
chunk
)
actual_query
=
sql
.
format
(
values_str
)
DB
.
query
(
actual_query
)
values
=
[]
cls
.
_comment_payout_ops
.
clear
()
@classmethod
def
comment_payout_op
(
cls
,
ops
,
date
):
values_limit
=
1000
values_limit
=
1000
ops_stats
=
{
'
author_reward_operation
'
:
0
,
'
comment_reward_operation
'
:
0
,
'
effective_comment_vote_operation
'
:
0
,
'
comment_payout_update_operation
'
:
0
}
ops_stats
=
{
'
author_reward_operation
'
:
0
,
'
comment_reward_operation
'
:
0
,
'
effective_comment_vote_operation
'
:
0
,
'
comment_payout_update_operation
'
:
0
}
...
@@ -289,7 +304,7 @@ class Posts:
...
@@ -289,7 +304,7 @@ class Posts:
payout_at
=
date
#Here should be `cashout_time`
payout_at
=
date
#Here should be `cashout_time`
last_payout
=
date
last_payout
=
date
value
s
.
append
(
"
(
'
{}
'
,
'
{}
'
, {}, {}, {}, {}, {}, {}, {}, {}, {},
'
{}
'
::timestamp, {}, {}, {})
"
.
format
(
cls
.
_comment_payout_op
s
.
append
(
"
(
'
{}
'
,
'
{}
'
, {}, {}, {}, {}, {}, {}, {}, {}, {},
'
{}
'
::timestamp, {}, {}, {})
"
.
format
(
author
,
author
,
permlink
,
permlink
,
"
NULL
"
if
(
total_payout_value
is
None
)
else
(
"'
{}
'"
.
format
(
legacy_amount
(
total_payout_value
)
)
),
"
NULL
"
if
(
total_payout_value
is
None
)
else
(
"'
{}
'"
.
format
(
legacy_amount
(
total_payout_value
)
)
),
...
@@ -308,19 +323,6 @@ class Posts:
...
@@ -308,19 +323,6 @@ class Posts:
"
NULL
"
if
(
is_paidout
is
None
)
else
is_paidout
))
"
NULL
"
if
(
is_paidout
is
None
)
else
is_paidout
))
if
len
(
values
)
>=
values_limit
:
values_str
=
'
,
'
.
join
(
values
)
actual_query
=
sql
.
format
(
values_str
)
DB
.
query
(
actual_query
)
values
.
clear
()
if
len
(
values
)
>
0
:
values_str
=
'
,
'
.
join
(
values
)
actual_query
=
sql
.
format
(
values_str
)
DB
.
query
(
actual_query
)
values
.
clear
()
return
ops_stats
return
ops_stats
@classmethod
@classmethod
...
...
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