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
8a58957b
Commit
8a58957b
authored
4 years ago
by
Mariusz Trela
Committed by
Mariusz Trela
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Slowdown fix - part 2
parent
a8d03c5b
No related branches found
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
+13
-7
13 additions, 7 deletions
hive/indexer/blocks.py
hive/indexer/sync.py
+1
-2
1 addition, 2 deletions
hive/indexer/sync.py
with
14 additions
and
9 deletions
hive/indexer/blocks.py
+
13
−
7
View file @
8a58957b
...
...
@@ -101,9 +101,10 @@ class Blocks:
return
cls
.
ops_stats
@staticmethod
def
prepare_vops
(
comment_payout_ops
,
vopsList
,
date
):
def
prepare_vops
(
vopsList
,
date
):
vote_ops
=
{}
comment_payout_ops
=
{}
ops_stats
=
{
'
author_reward_operation
'
:
0
,
'
comment_reward_operation
'
:
0
,
'
effective_comment_vote_operation
'
:
0
,
'
comment_payout_update_operation
'
:
0
}
for
vop
in
vopsList
:
...
...
@@ -151,7 +152,7 @@ class Blocks:
comment_payout_ops
[
key
][
op_type
]
=
op_value
return
(
vote_ops
,
ops_stats
)
return
(
vote_ops
,
comment_payout_ops
,
ops_stats
)
@classmethod
...
...
@@ -235,21 +236,26 @@ class Blocks:
cls
.
ops_stats
=
Blocks
.
merge_ops_stats
(
cls
.
ops_stats
,
custom_ops_stats
)
# virtual ops
comment_payout_
stat
s
=
{}
comment_payout_
op
s
=
{}
vote_ops
=
{}
comment_payout_stats
=
{}
empty_vops
=
(
vote_ops
,
comment_payout_stats
)
empty_vops
=
(
vote_ops
,
comment_payout_ops
,
comment_payout_stats
)
if
is_initial_sync
:
(
vote_ops
,
comment_payout_stats
)
=
virtual_operations
[
num
]
if
num
in
virtual_operations
else
empty_vops
(
vote_ops
,
comment_payout_ops
,
comment_payout_stats
)
=
virtual_operations
[
num
]
if
num
in
virtual_operations
else
empty_vops
else
:
vops
=
hived
.
get_virtual_operations
(
num
)
(
vote_ops
,
comment_payout_stats
)
=
Blocks
.
prepare_vops
(
Posts
.
comment_payout_ops
,
vops
,
cls
.
_head_block_date
)
cls
.
ops_stats
=
Blocks
.
merge_ops_stats
(
cls
.
ops_stats
,
comment_payout_stats
)
(
vote_ops
,
comment_payout_ops
,
comment_payout_stats
)
=
Blocks
.
prepare_vops
(
vops
,
cls
.
_head_block_date
)
cls
.
comment_payout_ops
=
{
**
Posts
.
comment_payout_ops
,
**
comment_payout_ops
}
for
k
,
v
in
vote_ops
.
items
():
Votes
.
effective_comment_vote_op
(
v
,
cls
.
_head_block_date
)
if
comment_payout_ops
:
cls
.
ops_stats
=
Blocks
.
merge_ops_stats
(
cls
.
ops_stats
,
comment_payout_stats
)
cls
.
_head_block_date
=
block_date
return
num
...
...
This diff is collapsed.
Click to expand it.
hive/indexer/sync.py
+
1
−
2
View file @
8a58957b
...
...
@@ -19,7 +19,6 @@ from hive.db.db_state import DbState
from
hive.utils.timer
import
Timer
from
hive.steem.block.stream
import
MicroForkException
from
hive.indexer.posts
import
Posts
from
hive.indexer.blocks
import
Blocks
from
hive.indexer.accounts
import
Accounts
from
hive.indexer.feed_cache
import
FeedCache
...
...
@@ -46,7 +45,7 @@ def prepare_vops(vops_by_block):
for
blockNum
,
blockDict
in
vops_by_block
.
items
():
vopsList
=
blockDict
[
'
ops
'
]
date
=
blockDict
[
'
timestamp
'
]
preparedVops
[
blockNum
]
=
Blocks
.
prepare_vops
(
Posts
.
comment_payout_ops
,
vopsList
,
date
)
preparedVops
[
blockNum
]
=
Blocks
.
prepare_vops
(
vopsList
,
date
)
return
preparedVops
...
...
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