Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
beem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
beem
Commits
fe0bc6d5
Commit
fe0bc6d5
authored
6 years ago
by
Holger
Browse files
Options
Downloads
Patches
Plain Diff
New steem instance for each thread
* "Bad or missing upstream response" is handled
parent
2e7d45bf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
beem/blockchain.py
+14
-4
14 additions, 4 deletions
beem/blockchain.py
beemapi/steemnoderpc.py
+3
-0
3 additions, 0 deletions
beemapi/steemnoderpc.py
with
17 additions
and
4 deletions
beem/blockchain.py
+
14
−
4
View file @
fe0bc6d5
...
...
@@ -19,11 +19,13 @@ from datetime import datetime, timedelta
from
.utils
import
formatTimeString
,
addTzInfo
from
.block
import
Block
from
beemapi.node
import
Nodes
from
beemapi.steemnoderpc
import
SteemNodeRPC
from
.exceptions
import
BatchedCallsNotSupported
,
BlockDoesNotExistsException
,
BlockWaitTimeExceeded
,
OfflineHasNoRPCException
from
beemapi.exceptions
import
NumRetriesReached
from
beemgraphenebase.py23
import
py23_bytes
from
beem.instance
import
shared_steem_instance
from
.amount
import
Amount
import
beem
as
stm
log
=
logging
.
getLogger
(
__name__
)
if
sys
.
version_info
<
(
3
,
0
):
from
Queue
import
Queue
...
...
@@ -394,6 +396,13 @@ class Blockchain(object):
pool
=
ThreadPoolExecutor
(
max_workers
=
thread_num
)
elif
threading
:
pool
=
Pool
(
thread_num
,
batch_mode
=
True
)
if
threading
:
steem_instance
=
[]
for
i
in
range
(
thread_num
):
steem_instance
.
append
(
stm
.
Steem
(
node
=
self
.
steem
.
rpc
.
nodes
,
num_retries
=
self
.
steem
.
rpc
.
num_retries
,
num_retries_call
=
self
.
steem
.
rpc
.
num_retries_call
,
timeout
=
self
.
steem
.
rpc
.
timeout
))
# We are going to loop indefinitely
while
True
:
...
...
@@ -424,9 +433,9 @@ class Blockchain(object):
block_num_list
.
append
(
blocknum
+
i
)
results
=
[]
if
FUTURES_MODULE
is
not
None
:
futures
.
append
(
pool
.
submit
(
Block
,
blocknum
+
i
,
only_ops
=
only_ops
,
only_virtual_ops
=
only_virtual_ops
,
steem_instance
=
s
elf
.
steem
))
futures
.
append
(
pool
.
submit
(
Block
,
blocknum
+
i
,
only_ops
=
only_ops
,
only_virtual_ops
=
only_virtual_ops
,
steem_instance
=
s
teem_instance
[
i
]
))
else
:
pool
.
enqueue
(
Block
,
blocknum
+
i
,
only_ops
=
only_ops
,
only_virtual_ops
=
only_virtual_ops
,
steem_instance
=
s
elf
.
steem
)
pool
.
enqueue
(
Block
,
blocknum
+
i
,
only_ops
=
only_ops
,
only_virtual_ops
=
only_virtual_ops
,
steem_instance
=
s
teem_instance
[
i
]
)
i
+=
1
if
FUTURES_MODULE
is
not
None
:
try
:
...
...
@@ -867,8 +876,9 @@ class Blockchain(object):
>>>
from
beem.blockchain
import
Blockchain
>>>
blockchain
=
Blockchain
()
>>>
print
(
blockchain
.
get_similar_account_names
(
"
test
"
,
limit
=
5
))
[
'
test
'
,
'
test-1
'
,
'
test-2
'
,
'
test-ico
'
,
'
test-ilionx-123
'
]
>>>
ret
=
blockchain
.
get_similar_account_names
(
"
test
"
,
limit
=
5
)
>>>
ret
==
[
'
test
'
,
'
test-1
'
,
'
test-2
'
,
'
test-ico
'
,
'
test-ilionx-123
'
]
True
"""
if
not
self
.
steem
.
is_connected
():
...
...
This diff is collapsed.
Click to expand it.
beemapi/steemnoderpc.py
+
3
−
0
View file @
fe0bc6d5
...
...
@@ -132,6 +132,9 @@ class SteemNodeRPC(GrapheneRPC):
elif
re
.
search
(
"
Request Timeout
"
,
msg
):
self
.
nodes
.
sleep_and_check_retries
(
str
(
msg
),
call_retry
=
True
)
doRetry
=
True
elif
re
.
search
(
"
Bad or missing upstream response
"
,
msg
):
self
.
nodes
.
sleep_and_check_retries
(
str
(
msg
),
call_retry
=
True
)
doRetry
=
True
elif
re
.
search
(
"
Internal Error
"
,
msg
)
or
re
.
search
(
"
Unknown exception
"
,
msg
):
self
.
nodes
.
sleep_and_check_retries
(
str
(
msg
),
call_retry
=
True
)
doRetry
=
True
...
...
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