Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
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
RadioObservatory
LOFAR
Commits
fe9f0cd4
Commit
fe9f0cd4
authored
10 years ago
by
Wouter Klijn
Browse files
Options
Downloads
Plain Diff
Task #7458: Merge the release back into the trunk
parents
51404aa5
35be9183
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CEP/Pipeline/framework/lofarpipe/support/lofarnode.py
+27
-11
27 additions, 11 deletions
CEP/Pipeline/framework/lofarpipe/support/lofarnode.py
CEP/Pipeline/visual_studio/Pipeline.v12.suo
+0
-0
0 additions, 0 deletions
CEP/Pipeline/visual_studio/Pipeline.v12.suo
with
27 additions
and
11 deletions
CEP/Pipeline/framework/lofarpipe/support/lofarnode.py
+
27
−
11
View file @
fe9f0cd4
...
...
@@ -119,22 +119,38 @@ class LOFARnodeTCP(LOFARnode):
else
:
break
def
__fetch_arguments
(
self
):
def
__fetch_arguments
(
self
,
tries
=
5
,
min_timeout
=
1.0
,
max_timeout
=
5.0
):
"""
Connect to a remote job dispatch server (an instance of
jobserver.JobSocketReceive) and obtain all the details necessary to
run this job.
"""
s
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
self
.
__try_connect
(
s
)
message
=
"
GET %d
"
%
self
.
job_id
s
.
sendall
(
struct
.
pack
(
"
>L
"
,
len
(
message
))
+
message
)
chunk
=
s
.
recv
(
4
)
slen
=
struct
.
unpack
(
"
>L
"
,
chunk
)[
0
]
chunk
=
s
.
recv
(
slen
)
while
len
(
chunk
)
<
slen
:
chunk
+=
s
.
recv
(
slen
-
len
(
chunk
))
self
.
arguments
=
pickle
.
loads
(
chunk
)
while
True
:
tries
-=
1
try
:
s
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
self
.
__try_connect
(
s
)
message
=
"
GET %d
"
%
self
.
job_id
s
.
sendall
(
struct
.
pack
(
"
>L
"
,
len
(
message
))
+
message
)
chunk
=
s
.
recv
(
4
)
slen
=
struct
.
unpack
(
"
>L
"
,
chunk
)[
0
]
chunk
=
s
.
recv
(
slen
)
while
len
(
chunk
)
<
slen
:
chunk
+=
s
.
recv
(
slen
-
len
(
chunk
))
self
.
arguments
=
pickle
.
loads
(
chunk
)
except
socket
.
error
,
e
:
print
"
Failed to get recipe arguments from server
"
if
tries
>
0
:
timeout
=
random
.
uniform
(
min_timeout
,
max_timeout
)
print
(
"
Retrying in %f seconds (%d more %s).
"
%
(
timeout
,
tries
,
"
try
"
if
tries
==
1
else
"
tries
"
))
time
.
sleep
(
timeout
)
else
:
# we tried 5 times, abort with original exception
raise
else
:
# no error, thus break the loop
break
#
def
__send_results
(
self
):
"""
...
...
This diff is collapsed.
Click to expand it.
CEP/Pipeline/visual_studio/Pipeline.v12.suo
+
0
−
0
View file @
fe9f0cd4
No preview for this file type
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