Skip to content
Snippets Groups Projects
Commit 7810505b authored by Dariusz Kędzierski's avatar Dariusz Kędzierski Committed by Mariusz Trela
Browse files

Proposal of the fix for performance issue

parent 8964861d
No related branches found
No related tags found
4 merge requests!456Release candidate v1 24,!230Setup monitoring with pghero,!135Enable postgres monitoring on CI server,!61Issue #47 - test database_api get_payout_stats fail
...@@ -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)
......
...@@ -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
values.append("('{}', '{}', {}, {}, {}, {}, {}, {}, {}, {}, {}, '{}'::timestamp, {}, {}, {})".format( cls._comment_payout_ops.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
......
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