Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
buildstream
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
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
BuildStream
buildstream
Commits
c6306b88
Commit
c6306b88
authored
6 years ago
by
Jürg Billeter
Browse files
Options
Downloads
Plain Diff
Merge branch '725-job-cancellation-on-remote-builds' into 'master'
_sandboxremote.py: Add sigterm handler that sends CancelOperation Closes
#725
See merge request
!900
parents
8071c00c
fd41b0b5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
Loading
Pipeline
#37291850
passed
6 years ago
Stage: prepare
Stage: test
Stage: post
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
buildstream/sandbox/_sandboxremote.py
+29
-2
29 additions, 2 deletions
buildstream/sandbox/_sandboxremote.py
with
29 additions
and
2 deletions
buildstream/sandbox/_sandboxremote.py
+
29
−
2
View file @
c6306b88
...
...
@@ -20,15 +20,18 @@
import
os
from
urllib.parse
import
urlparse
from
functools
import
partial
import
grpc
from
.
import
Sandbox
from
..storage._filebaseddirectory
import
FileBasedDirectory
from
..storage._casbaseddirectory
import
CasBasedDirectory
from
..
import
_signals
from
.._protos.build.bazel.remote.execution.v2
import
remote_execution_pb2
,
remote_execution_pb2_grpc
from
.._protos.google.rpc
import
code_pb2
from
.._exceptions
import
SandboxError
from
.._protos.google.longrunning
import
operations_pb2
,
operations_pb2_grpc
# SandboxRemote()
...
...
@@ -51,6 +54,7 @@ class SandboxRemote(Sandbox):
"
Only plain HTTP is currenlty supported (no HTTPS).
"
)
self
.
server_url
=
'
{}:{}
'
.
format
(
url
.
hostname
,
url
.
port
)
self
.
operation_name
=
None
def
run_remote_command
(
self
,
command
,
input_root_digest
,
working_directory
,
environment
):
# Sends an execution request to the remote execution server.
...
...
@@ -102,10 +106,13 @@ class SandboxRemote(Sandbox):
operation_iterator
=
stub
.
WaitExecution
(
request
)
for
operation
in
operation_iterator
:
if
not
self
.
operation_name
:
self
.
operation_name
=
operation
.
name
if
operation
.
done
:
return
operation
else
:
last_operation
=
operation
except
grpc
.
RpcError
as
e
:
status_code
=
e
.
code
()
if
status_code
==
grpc
.
StatusCode
.
UNAVAILABLE
:
...
...
@@ -125,19 +132,39 @@ class SandboxRemote(Sandbox):
return
last_operation
# Set up signal handler to trigger cancel_operation on SIGTERM
operation
=
None
with
self
.
_get_context
().
timed_activity
(
"
Waiting for the remote build to complete
"
):
with
self
.
_get_context
().
timed_activity
(
"
Waiting for the remote build to complete
"
),
\
_signals
.
terminator
(
partial
(
self
.
cancel_operation
,
channel
)):
operation
=
__run_remote_command
(
stub
,
execute_request
=
request
)
if
operation
is
None
:
return
None
elif
operation
.
done
:
return
operation
while
operation
is
not
None
and
not
operation
.
done
:
operation
=
__run_remote_command
(
stub
,
running_operation
=
operation
)
return
operation
def
cancel_operation
(
self
,
channel
):
# If we don't have the name can't send request.
if
self
.
operation_name
is
None
:
return
stub
=
operations_pb2_grpc
.
OperationsStub
(
channel
)
request
=
operations_pb2
.
CancelOperationRequest
(
name
=
str
(
self
.
operation_name
))
try
:
stub
.
CancelOperation
(
request
)
except
grpc
.
RpcError
as
e
:
if
(
e
.
code
()
==
grpc
.
StatusCode
.
UNIMPLEMENTED
or
e
.
code
()
==
grpc
.
StatusCode
.
INVALID_ARGUMENT
):
pass
else
:
raise
SandboxError
(
"
Failed trying to send CancelOperation request:
"
"
{} ({})
"
.
format
(
e
.
details
(),
e
.
code
().
name
))
def
process_job_output
(
self
,
output_directories
,
output_files
):
# Reads the remote execution server response to an execution request.
#
...
...
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