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
abb545e2
Commit
abb545e2
authored
7 years ago
by
roadscape
Browse files
Options
Downloads
Patches
Plain Diff
add separate JUSSI_URL env, use it to branch
parent
b5c59ad2
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
docker-compose.yml
+2
-1
2 additions, 1 deletion
docker-compose.yml
hive/indexer/utils.py
+13
-9
13 additions, 9 deletions
hive/indexer/utils.py
with
15 additions
and
10 deletions
docker-compose.yml
+
2
−
1
View file @
abb545e2
...
...
@@ -17,7 +17,8 @@ services:
environment
:
DATABASE_URL
:
mysql://root:root_password@mysql:3306/testdb
LOG_LEVEL
:
DEBUG
STEEMD_URL
:
https://api.steemitdev.com
STEEMD_URL
:
https://steemd.steemit.com
JUSSI_URL
:
https://api.steemitdev.com
links
:
-
mysql:db
ports
:
...
...
This diff is collapsed.
Click to expand it.
hive/indexer/utils.py
+
13
−
9
View file @
abb545e2
...
...
@@ -28,16 +28,19 @@ _shared_adapter = None
def
get_adapter
():
global
_shared_adapter
if
not
_shared_adapter
:
url
=
os
.
environ
.
get
(
'
STEEMD_URL
'
)
assert
url
,
'
STEEMD_URL undefined
'
_shared_adapter
=
SteemAdapter
(
url
)
steem
=
os
.
environ
.
get
(
'
STEEMD_URL
'
)
jussi
=
os
.
environ
.
get
(
'
JUSSI_URL
'
)
_shared_adapter
=
SteemAdapter
(
steem
,
jussi
)
return
_shared_adapter
class
SteemAdapter
:
def
__init__
(
self
,
api_endpoint
):
self
.
_client
=
HttpClient
(
nodes
=
[
api_endpoint
])
def
__init__
(
self
,
api_endpoint
,
jussi
=
None
):
self
.
_jussi
=
bool
(
jussi
)
url
=
jussi
or
api_endpoint
assert
url
,
'
steem-API endpoint undefined
'
self
.
_client
=
HttpClient
(
nodes
=
[
url
])
def
get_accounts
(
self
,
accounts
):
return
self
.
__exec
(
'
get_accounts
'
,
accounts
)
...
...
@@ -79,11 +82,12 @@ class SteemAdapter:
return
[
blocks
[
x
]
for
x
in
block_nums
]
def
__exec_multi
(
self
,
method
,
params
,
max_workers
=
10
):
return
self
.
_client
.
exec_multi_with_futures
(
method
,
params
,
max_workers
=
10
)
def
__exec
(
self
,
method
,
*
params
):
return
self
.
_client
.
exec
(
method
,
*
params
)
def
__exec_batch
(
self
,
method
,
params
):
return
self
.
_client
.
exec_batch
(
method
,
params
)
"""
If jussi is enabled, use batch requests; otherwise, multi
"""
if
self
.
_jussi
:
return
self
.
_client
.
exec_batch
(
method
,
params
)
else
:
return
self
.
_client
.
exec_multi_with_futures
(
method
,
params
,
max_workers
=
10
)
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