Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Pump, Cedric
lab-tracing
Commits
b94caeb1
Commit
b94caeb1
authored
Dec 27, 2020
by
Nane Kratzke
Browse files
parallel space
parent
149d9567
Changes
1
Show whitespace changes
Inline
Side-by-side
space/service.py
View file @
b94caeb1
...
...
@@ -5,7 +5,6 @@ import requests
import
traceback
import
os
import
json
from
joblib
import
Parallel
,
delayed
# A very boring and basic space-service to demonstrate
...
...
@@ -26,10 +25,12 @@ tracer = config.initialize_tracer()
def
index
():
return
redirect
(
'/space'
)
def
load_url
(
url
,
key
,
ctx
):
with
tracer
.
start_span
(
operation_name
=
key
,
child_of
=
ctx
)
as
span
:
def
load_url
(
key
,
url
):
return
key
,
json
.
loads
(
requests
.
get
(
url
).
content
)
#with tracer.start_span(operation_name=key, child_of=ctx) as span:
# return key, json.loads(requests.get(url).content)
@
app
.
route
(
'/space'
)
def
space
():
with
tracer
.
start_span
(
operation_name
=
"space"
)
as
parent_span
:
...
...
@@ -46,10 +47,10 @@ def space():
"passtime"
:
f
"http://api.open-notify.org/iss-pass.json?lat=
{
lat
}
&lon=
{
lon
}
"
}
#result = {}
results
=
Parallel
(
n_jobs
=
3
)(
delayed
(
load_url
)(
url
,
key
,
parent_span
)
for
key
,
url
in
queries
.
items
())
with
tracer
.
start_span
(
operation_name
=
"parallel"
,
child_of
=
parent_span
)
as
span
:
results
=
Parallel
()(
delayed
(
load_url
)(
key
,
url
)
for
key
,
url
in
queries
.
items
())
result
=
{
key
:
content
for
key
,
content
in
results
}
#for key, url in queries.items():
# with tracer.start_span(operation_name=key, child_of=parent_span) as span:
# result[key] = json.loads(requests.get(url).content)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment