Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pycalibration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor 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
calibration
pycalibration
Commits
ead040bf
Commit
ead040bf
authored
2 years ago
by
Thomas Kluyver
Browse files
Options
Downloads
Patches
Plain Diff
Initial skeleton for repeat action in webservice
parent
a91966a3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!695
[webservice] Support requests to repeat correction from myMdC
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
webservice/config/webservice.yaml
+1
-0
1 addition, 0 deletions
webservice/config/webservice.yaml
webservice/webservice.py
+38
-0
38 additions, 0 deletions
webservice/webservice.py
with
39 additions
and
0 deletions
webservice/config/webservice.yaml
+
1
−
0
View file @
ead040bf
...
@@ -31,6 +31,7 @@ kafka:
...
@@ -31,6 +31,7 @@ kafka:
correct
:
correct
:
in-folder
:
/gpfs/exfel/exp/{instrument}/{cycle}/p{proposal}/raw
in-folder
:
/gpfs/exfel/exp/{instrument}/{cycle}/p{proposal}/raw
out-folder
:
/gpfs/exfel/d/proc/{instrument}/{cycle}/p{proposal}/{run}
out-folder
:
/gpfs/exfel/d/proc/{instrument}/{cycle}/p{proposal}/{run}
reports-folder
:
/gpfs/exfel/exp/{instrument}/{cycle}/p{proposal}/usr/Reports/{runs}/
commissioning-penalty
:
1250
commissioning-penalty
:
1250
job-penalty
:
2
job-penalty
:
2
cmd
:
>-
cmd
:
>-
...
...
This diff is collapsed.
Click to expand it.
webservice/webservice.py
+
38
−
0
View file @
ead040bf
...
@@ -786,6 +786,7 @@ class ActionsServer:
...
@@ -786,6 +786,7 @@ class ActionsServer:
accepted_actions
=
{
accepted_actions
=
{
'
correct
'
,
'
correct
'
,
'
repeat
'
,
'
dark_request
'
,
'
dark_request
'
,
'
query-rid
'
,
'
query-rid
'
,
'
upload-yaml
'
,
'
upload-yaml
'
,
...
@@ -933,6 +934,43 @@ class ActionsServer:
...
@@ -933,6 +934,43 @@ class ActionsServer:
return
queued_msg
.
encode
()
return
queued_msg
.
encode
()
async
def
handle_repeat
(
self
,
rid
,
instrument
,
cycle
,
proposal
,
runnr
):
reports_dir
=
Path
(
self
.
config
[
'
correct
'
][
'
reports-folder
'
].
format
(
instrument
=
instrument
,
cycle
=
cycle
,
proposal
=
proposal
,
runs
=
runnr
))
mddirs_by_krb_id
=
{}
for
calmeta_pth
in
sorted
(
reports_dir
.
glob
(
'
*/calibration_metadata.yml
'
)):
with
calmeta_pth
.
open
(
'
r
'
,
encoding
=
'
utf-8
'
)
as
f
:
calmeta
=
yaml
.
safe_load
(
f
)
try
:
request_time
=
calmeta
[
"
runtime-summary
"
][
"
pipeline-steps
"
][
"
request-time
"
]
karabo_id
=
calmeta
[
"
calibration-configurations
"
][
"
karabo-id
"
]
except
KeyError
:
logging
.
warning
(
"
Did not find expected metadata in %s
"
,
calmeta_pth
,
exc_info
=
True
)
else
:
mddirs_by_krb_id
.
setdefault
(
karabo_id
,
[]).
append
(
(
calmeta_pth
.
parent
,
request_time
)
)
logging
.
info
(
"
Found %d corrections to re-run for p%s r%s: %s
"
,
len
(
mddirs_by_krb_id
),
proposal
,
runnr
,
list
(
mddirs_by_krb_id
))
for
karabo_id
,
mddirs
in
mddirs_by_krb_id
.
items
():
# Select the latest metadata directory - with the highest request
# time - to re-run for each detector (karabo_id)
mddir
,
_
=
max
(
mddirs
,
key
=
lambda
p
:
p
[
1
])
logging
.
info
(
"
Repeating correction for %s from %s
"
,
karabo_id
,
mddir
)
cmd
=
[
'
python
'
,
'
-m
'
,
'
xfel_calibrate.repeat
'
,
mddir
]
await
run_action
(
self
.
job_db
,
cmd
,
self
.
mode
,
proposal
,
runnr
,
rid
)
async
def
handle_dark_request
(
async
def
handle_dark_request
(
self
,
rid
,
_sase
,
instrument
,
cycle
,
proposal
,
karabo_id
,
self
,
rid
,
_sase
,
instrument
,
cycle
,
proposal
,
karabo_id
,
operation_mode
,
*
extra
operation_mode
,
*
extra
...
...
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