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
buildgrid
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Show more breadcrumbs
BuildGrid
buildgrid
Commits
070e1136
Commit
070e1136
authored
6 years ago
by
Martin Blanchard
Browse files
Options
Downloads
Patches
Plain Diff
Renaming ExecutionStage to OperationStage for clarity
#83
parent
6afc4f91
No related branches found
No related tags found
Loading
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
buildgrid/server/job.py
+4
-26
4 additions, 26 deletions
buildgrid/server/job.py
buildgrid/server/scheduler.py
+8
-8
8 additions, 8 deletions
buildgrid/server/scheduler.py
tests/integration/execution_service.py
+3
-3
3 additions, 3 deletions
tests/integration/execution_service.py
with
15 additions
and
37 deletions
buildgrid/server/job.py
+
4
−
26
View file @
070e1136
...
...
@@ -26,50 +26,28 @@ from buildgrid._protos.google.devtools.remoteworkers.v1test2 import bots_pb2
from
buildgrid._protos.google.longrunning
import
operations_pb2
class
ExecuteStage
(
Enum
):
class
OperationStage
(
Enum
):
# Initially unknown stage.
UNKNOWN
=
remote_execution_pb2
.
ExecuteOperationMetadata
.
Stage
.
Value
(
'
UNKNOWN
'
)
# Checking the result against the cache.
CACHE_CHECK
=
remote_execution_pb2
.
ExecuteOperationMetadata
.
Stage
.
Value
(
'
CACHE_CHECK
'
)
# Currently idle, awaiting a free machine to execute.
QUEUED
=
remote_execution_pb2
.
ExecuteOperationMetadata
.
Stage
.
Value
(
'
QUEUED
'
)
# Currently being executed by a worker.
EXECUTING
=
remote_execution_pb2
.
ExecuteOperationMetadata
.
Stage
.
Value
(
'
EXECUTING
'
)
# Finished execution.
COMPLETED
=
remote_execution_pb2
.
ExecuteOperationMetadata
.
Stage
.
Value
(
'
COMPLETED
'
)
class
BotStatus
(
Enum
):
BOT_STATUS_UNSPECIFIED
=
bots_pb2
.
BotStatus
.
Value
(
'
BOT_STATUS_UNSPECIFIED
'
)
# The bot is healthy, and will accept leases as normal.
OK
=
bots_pb2
.
BotStatus
.
Value
(
'
OK
'
)
# The bot is unhealthy and will not accept new leases.
UNHEALTHY
=
bots_pb2
.
BotStatus
.
Value
(
'
UNHEALTHY
'
)
# The bot has been asked to reboot the host.
HOST_REBOOTING
=
bots_pb2
.
BotStatus
.
Value
(
'
HOST_REBOOTING
'
)
# The bot has been asked to shut down.
BOT_TERMINATING
=
bots_pb2
.
BotStatus
.
Value
(
'
BOT_TERMINATING
'
)
class
LeaseState
(
Enum
):
# Initially unknown state.
LEASE_STATE_UNSPECIFIED
=
bots_pb2
.
LeaseState
.
Value
(
'
LEASE_STATE_UNSPECIFIED
'
)
# The server expects the bot to accept this lease.
PENDING
=
bots_pb2
.
LeaseState
.
Value
(
'
PENDING
'
)
# The bot has accepted this lease.
ACTIVE
=
bots_pb2
.
LeaseState
.
Value
(
'
ACTIVE
'
)
# The bot is no longer leased.
COMPLETED
=
bots_pb2
.
LeaseState
.
Value
(
'
COMPLETED
'
)
# The bot should immediately release all resources associated with the lease.
CANCELLED
=
bots_pb2
.
LeaseState
.
Value
(
'
CANCELLED
'
)
...
...
@@ -85,7 +63,7 @@ class Job:
self
.
_action_digest
=
action_digest
self
.
_do_not_cache
=
do_not_cache
self
.
_execute_stage
=
Execute
Stage
.
UNKNOWN
self
.
_execute_stage
=
Operation
Stage
.
UNKNOWN
self
.
_name
=
str
(
uuid
.
uuid4
())
self
.
_operation
=
operations_pb2
.
Operation
(
name
=
self
.
_name
)
self
.
_operation_update_queues
=
[]
...
...
This diff is collapsed.
Click to expand it.
buildgrid/server/scheduler.py
+
8
−
8
View file @
070e1136
...
...
@@ -27,7 +27,7 @@ from buildgrid._exceptions import NotFoundError
from
buildgrid._protos.build.bazel.remote.execution.v2
import
remote_execution_pb2
from
buildgrid._protos.google.longrunning
import
operations_pb2
from
.job
import
Execute
Stage
,
LeaseState
from
.job
import
Operation
Stage
,
LeaseState
class
Scheduler
:
...
...
@@ -55,26 +55,26 @@ class Scheduler:
cached_result
=
self
.
_action_cache
.
get_action_result
(
job
.
action_digest
)
except
NotFoundError
:
self
.
queue
.
append
(
job
)
job
.
update_execute_stage
(
Execute
Stage
.
QUEUED
)
job
.
update_execute_stage
(
Operation
Stage
.
QUEUED
)
else
:
job
.
result
=
cached_result
job
.
result_cached
=
True
job
.
update_execute_stage
(
Execute
Stage
.
COMPLETED
)
job
.
update_execute_stage
(
Operation
Stage
.
COMPLETED
)
else
:
self
.
queue
.
append
(
job
)
job
.
update_execute_stage
(
Execute
Stage
.
QUEUED
)
job
.
update_execute_stage
(
Operation
Stage
.
QUEUED
)
def
retry_job
(
self
,
name
):
if
name
in
self
.
jobs
:
job
=
self
.
jobs
[
name
]
if
job
.
n_tries
>=
self
.
MAX_N_TRIES
:
# TODO: Decide what to do with these jobs
job
.
update_execute_stage
(
Execute
Stage
.
COMPLETED
)
job
.
update_execute_stage
(
Operation
Stage
.
COMPLETED
)
# TODO: Mark these jobs as done
else
:
job
.
update_execute_stage
(
Execute
Stage
.
QUEUED
)
job
.
update_execute_stage
(
Operation
Stage
.
QUEUED
)
job
.
n_tries
+=
1
self
.
queue
.
appendleft
(
job
)
...
...
@@ -87,7 +87,7 @@ class Scheduler:
if
not
job
.
do_not_cache
and
self
.
_action_cache
is
not
None
:
if
not
job
.
lease
.
status
.
code
:
self
.
_action_cache
.
update_action_result
(
job
.
action_digest
,
action_result
)
job
.
update_execute_stage
(
Execute
Stage
.
COMPLETED
)
job
.
update_execute_stage
(
Operation
Stage
.
COMPLETED
)
def
get_operations
(
self
):
response
=
operations_pb2
.
ListOperationsResponse
()
...
...
@@ -111,7 +111,7 @@ class Scheduler:
def
create_lease
(
self
):
if
self
.
queue
:
job
=
self
.
queue
.
popleft
()
job
.
update_execute_stage
(
Execute
Stage
.
EXECUTING
)
job
.
update_execute_stage
(
Operation
Stage
.
EXECUTING
)
job
.
create_lease
()
job
.
lease
.
state
=
LeaseState
.
PENDING
.
value
return
job
.
lease
...
...
This diff is collapsed.
Click to expand it.
tests/integration/execution_service.py
+
3
−
3
View file @
070e1136
...
...
@@ -82,7 +82,7 @@ def test_execute(skip_cache_lookup, instance, context):
assert
isinstance
(
result
,
operations_pb2
.
Operation
)
metadata
=
remote_execution_pb2
.
ExecuteOperationMetadata
()
result
.
metadata
.
Unpack
(
metadata
)
assert
metadata
.
stage
==
job
.
Execute
Stage
.
QUEUED
.
value
assert
metadata
.
stage
==
job
.
Operation
Stage
.
QUEUED
.
value
assert
uuid
.
UUID
(
result
.
name
,
version
=
4
)
assert
result
.
done
is
False
...
...
@@ -116,7 +116,7 @@ def test_wait_execution(instance, controller, context):
action_result
=
remote_execution_pb2
.
ActionResult
()
action_result_any
.
Pack
(
action_result
)
j
.
update_execute_stage
(
job
.
Execute
Stage
.
COMPLETED
)
j
.
update_execute_stage
(
job
.
Operation
Stage
.
COMPLETED
)
response
=
instance
.
WaitExecution
(
request
,
context
)
...
...
@@ -125,7 +125,7 @@ def test_wait_execution(instance, controller, context):
assert
isinstance
(
result
,
operations_pb2
.
Operation
)
metadata
=
remote_execution_pb2
.
ExecuteOperationMetadata
()
result
.
metadata
.
Unpack
(
metadata
)
assert
metadata
.
stage
==
job
.
Execute
Stage
.
COMPLETED
.
value
assert
metadata
.
stage
==
job
.
Operation
Stage
.
COMPLETED
.
value
assert
uuid
.
UUID
(
result
.
name
,
version
=
4
)
assert
result
.
done
is
True
...
...
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