[Notes] [Git][BuildGrid/buildgrid][finn/48-cancellation-leases] 14 commits: Scheduler can now cancel leases.



Title: GitLab

finn pushed to branch finn/48-cancellation-leases at BuildGrid / buildgrid

Commits:

15 changed files:

Changes:

  • buildgrid/_app/bots/dummy.py
    ... ... @@ -46,4 +46,7 @@ def work_dummy(context, lease):
    46 46
     
    
    47 47
         lease.result.Pack(action_result)
    
    48 48
     
    
    49
    +    # while True:
    
    50
    +    #    pass
    
    51
    +
    
    49 52
         return lease

  • buildgrid/_app/commands/cmd_bot.py
    ... ... @@ -28,8 +28,11 @@ from urllib.parse import urlparse
    28 28
     import click
    
    29 29
     import grpc
    
    30 30
     
    
    31
    -from buildgrid.bot import bot, bot_interface
    
    32
    -from buildgrid.bot.bot_session import BotSession, Device, Worker
    
    31
    +from buildgrid.bot import bot, interface, session
    
    32
    +from buildgrid.bot.hardware.interface import HardwareInterface
    
    33
    +from buildgrid.bot.hardware.device import Device
    
    34
    +from buildgrid.bot.hardware.worker import Worker
    
    35
    +
    
    33 36
     
    
    34 37
     from ..bots import buildbox, dummy, host
    
    35 38
     from ..cli import pass_context
    
    ... ... @@ -123,13 +126,14 @@ def cli(context, parent, update_period, remote, client_key, client_cert, server_
    123 126
         context.logger = logging.getLogger(__name__)
    
    124 127
         context.logger.debug("Starting for remote {}".format(context.remote))
    
    125 128
     
    
    126
    -    interface = bot_interface.BotInterface(context.channel)
    
    129
    +    bot_interface = interface.BotInterface(context.channel)
    
    127 130
     
    
    128 131
         worker = Worker()
    
    129 132
         worker.add_device(Device())
    
    130 133
     
    
    131
    -    bot_session = BotSession(parent, interface)
    
    132
    -    bot_session.add_worker(worker)
    
    134
    +    hardware_interface = HardwareInterface(worker)
    
    135
    +
    
    136
    +    bot_session = session.BotSession(parent, bot_interface, hardware_interface)
    
    133 137
     
    
    134 138
         context.bot_session = bot_session
    
    135 139
     
    
    ... ... @@ -142,8 +146,7 @@ def run_dummy(context):
    142 146
         """
    
    143 147
         try:
    
    144 148
             b = bot.Bot(context.bot_session, context.update_period)
    
    145
    -        b.session(dummy.work_dummy,
    
    146
    -                  context)
    
    149
    +        b.session(dummy.work_dummy, context)
    
    147 150
         except KeyboardInterrupt:
    
    148 151
             pass
    
    149 152
     
    

  • buildgrid/bot/bot.py
    ... ... @@ -17,11 +17,12 @@
    17 17
     Bot
    
    18 18
     ====
    
    19 19
     
    
    20
    -Creates a bot session.
    
    20
    +Creates a bot session and sends updates to the server.
    
    21 21
     """
    
    22 22
     
    
    23 23
     import asyncio
    
    24 24
     import logging
    
    25
    +import sys
    
    25 26
     
    
    26 27
     
    
    27 28
     class Bot:
    
    ... ... @@ -45,6 +46,7 @@ class Bot:
    45 46
                 loop.run_forever()
    
    46 47
             except KeyboardInterrupt:
    
    47 48
                 pass
    
    49
    +
    
    48 50
             finally:
    
    49 51
                 task.cancel()
    
    50 52
                 loop.close()
    
    ... ... @@ -54,5 +56,11 @@ class Bot:
    54 56
             Calls the server periodically to inform the server the client has not died.
    
    55 57
             """
    
    56 58
             while True:
    
    57
    -            self._bot_session.update_bot_session()
    
    59
    +            try:
    
    60
    +                self._bot_session.update_bot_session()
    
    61
    +
    
    62
    +            except Exception as e:
    
    63
    +                self.logger.error("Error: [{}]".format(e))
    
    64
    +                raise
    
    65
    +
    
    58 66
                 await asyncio.sleep(self._update_period)

  • buildgrid/bot/bot_session.py deleted
    1
    -# Copyright (C) 2018 Bloomberg LP
    
    2
    -#
    
    3
    -# Licensed under the Apache License, Version 2.0 (the "License");
    
    4
    -# you may not use this file except in compliance with the License.
    
    5
    -# You may obtain a copy of the License at
    
    6
    -#
    
    7
    -#  <http://www.apache.org/licenses/LICENSE-2.0>
    
    8
    -#
    
    9
    -# Unless required by applicable law or agreed to in writing, software
    
    10
    -# distributed under the License is distributed on an "AS IS" BASIS,
    
    11
    -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    
    12
    -# See the License for the specific language governing permissions and
    
    13
    -# limitations under the License.
    
    14
    -
    
    15
    -# Disable broad exception catch
    
    16
    -# pylint: disable=broad-except
    
    17
    -
    
    18
    -
    
    19
    -"""
    
    20
    -Bot Session
    
    21
    -====
    
    22
    -
    
    23
    -Allows connections
    
    24
    -"""
    
    25
    -import asyncio
    
    26
    -import logging
    
    27
    -import platform
    
    28
    -import uuid
    
    29
    -
    
    30
    -import grpc
    
    31
    -
    
    32
    -from buildgrid._enums import BotStatus, LeaseState
    
    33
    -from buildgrid._protos.google.rpc import code_pb2
    
    34
    -from buildgrid._protos.google.devtools.remoteworkers.v1test2 import bots_pb2, worker_pb2
    
    35
    -from buildgrid._exceptions import BotError
    
    36
    -
    
    37
    -
    
    38
    -class BotSession:
    
    39
    -    def __init__(self, parent, interface):
    
    40
    -        """ Unique bot ID within the farm used to identify this bot
    
    41
    -        Needs to be human readable.
    
    42
    -        All prior sessions with bot_id of same ID are invalidated.
    
    43
    -        If a bot attempts to update an invalid session, it must be rejected and
    
    44
    -        may be put in quarantine.
    
    45
    -        """
    
    46
    -
    
    47
    -        self.logger = logging.getLogger(__name__)
    
    48
    -
    
    49
    -        self._bot_id = '{}.{}'.format(parent, platform.node())
    
    50
    -        self._context = None
    
    51
    -        self._interface = interface
    
    52
    -        self._leases = {}
    
    53
    -        self._name = None
    
    54
    -        self._parent = parent
    
    55
    -        self._status = BotStatus.OK.value
    
    56
    -        self._work = None
    
    57
    -        self._worker = None
    
    58
    -
    
    59
    -    @property
    
    60
    -    def bot_id(self):
    
    61
    -        return self._bot_id
    
    62
    -
    
    63
    -    def add_worker(self, worker):
    
    64
    -        self._worker = worker
    
    65
    -
    
    66
    -    def create_bot_session(self, work, context=None):
    
    67
    -        self.logger.debug("Creating bot session")
    
    68
    -        self._work = work
    
    69
    -        self._context = context
    
    70
    -
    
    71
    -        session = self._interface.create_bot_session(self._parent, self.get_pb2())
    
    72
    -        self._name = session.name
    
    73
    -
    
    74
    -        self.logger.info("Created bot session with name: [{}]".format(self._name))
    
    75
    -
    
    76
    -        for lease in session.leases:
    
    77
    -            self._update_lease_from_server(lease)
    
    78
    -
    
    79
    -    def update_bot_session(self):
    
    80
    -        self.logger.debug("Updating bot session: [{}]".format(self._bot_id))
    
    81
    -        session = self._interface.update_bot_session(self.get_pb2())
    
    82
    -        for k, v in list(self._leases.items()):
    
    83
    -            if v.state == LeaseState.COMPLETED.value:
    
    84
    -                del self._leases[k]
    
    85
    -
    
    86
    -        for lease in session.leases:
    
    87
    -            self._update_lease_from_server(lease)
    
    88
    -
    
    89
    -    def get_pb2(self):
    
    90
    -        leases = list(self._leases.values())
    
    91
    -        if not leases:
    
    92
    -            leases = None
    
    93
    -
    
    94
    -        return bots_pb2.BotSession(worker=self._worker.get_pb2(),
    
    95
    -                                   status=self._status,
    
    96
    -                                   leases=leases,
    
    97
    -                                   bot_id=self._bot_id,
    
    98
    -                                   name=self._name)
    
    99
    -
    
    100
    -    def lease_completed(self, lease):
    
    101
    -        lease.state = LeaseState.COMPLETED.value
    
    102
    -        self._leases[lease.id] = lease
    
    103
    -
    
    104
    -    def _update_lease_from_server(self, lease):
    
    105
    -        """
    
    106
    -        State machine for any recieved updates to the leases.
    
    107
    -        """
    
    108
    -        # TODO: Compare with previous state of lease
    
    109
    -        if lease.state == LeaseState.PENDING.value:
    
    110
    -            lease.state = LeaseState.ACTIVE.value
    
    111
    -            self._leases[lease.id] = lease
    
    112
    -            self.update_bot_session()
    
    113
    -            asyncio.ensure_future(self.create_work(lease))
    
    114
    -
    
    115
    -    async def create_work(self, lease):
    
    116
    -        self.logger.debug("Work created: [{}]".format(lease.id))
    
    117
    -        loop = asyncio.get_event_loop()
    
    118
    -
    
    119
    -        try:
    
    120
    -            lease = await loop.run_in_executor(None, self._work, self._context, lease)
    
    121
    -
    
    122
    -        except grpc.RpcError as e:
    
    123
    -            self.logger.error("RPC error thrown: [{}]".format(e))
    
    124
    -            lease.status.CopyFrom(e.code())
    
    125
    -
    
    126
    -        except BotError as e:
    
    127
    -            self.logger.error("Internal bot error thrown: [{}]".format(e))
    
    128
    -            lease.status.code = code_pb2.INTERNAL
    
    129
    -
    
    130
    -        except Exception as e:
    
    131
    -            self.logger.error("Exception thrown: [{}]".format(e))
    
    132
    -            lease.status.code = code_pb2.INTERNAL
    
    133
    -
    
    134
    -        self.logger.debug("Work complete: [{}]".format(lease.id))
    
    135
    -        self.lease_completed(lease)
    
    136
    -
    
    137
    -
    
    138
    -class Worker:
    
    139
    -    def __init__(self, properties=None, configs=None):
    
    140
    -        self.properties = {}
    
    141
    -        self._configs = {}
    
    142
    -        self._devices = []
    
    143
    -
    
    144
    -        if properties:
    
    145
    -            for k, v in properties.items():
    
    146
    -                if k == 'pool':
    
    147
    -                    self.properties[k] = v
    
    148
    -                else:
    
    149
    -                    raise KeyError('Key not supported: [{}]'.format(k))
    
    150
    -
    
    151
    -        if configs:
    
    152
    -            for k, v in configs.items():
    
    153
    -                if k == 'DockerImage':
    
    154
    -                    self.configs[k] = v
    
    155
    -                else:
    
    156
    -                    raise KeyError('Key not supported: [{}]'.format(k))
    
    157
    -
    
    158
    -    @property
    
    159
    -    def configs(self):
    
    160
    -        return self._configs
    
    161
    -
    
    162
    -    def add_device(self, device):
    
    163
    -        self._devices.append(device)
    
    164
    -
    
    165
    -    def get_pb2(self):
    
    166
    -        devices = [device.get_pb2() for device in self._devices]
    
    167
    -        worker = worker_pb2.Worker(devices=devices)
    
    168
    -        property_message = worker_pb2.Worker.Property()
    
    169
    -        for k, v in self.properties.items():
    
    170
    -            property_message.key = k
    
    171
    -            property_message.value = v
    
    172
    -            worker.properties.extend([property_message])
    
    173
    -
    
    174
    -        config_message = worker_pb2.Worker.Config()
    
    175
    -        for k, v in self.properties.items():
    
    176
    -            property_message.key = k
    
    177
    -            property_message.value = v
    
    178
    -            worker.configs.extend([config_message])
    
    179
    -
    
    180
    -        return worker
    
    181
    -
    
    182
    -
    
    183
    -class Device:
    
    184
    -    def __init__(self, properties=None):
    
    185
    -        """ Creates devices available to the worker
    
    186
    -        The first device is know as the Primary Device - the revice which
    
    187
    -        is running a bit and responsible to actually executing commands.
    
    188
    -        All other devices are known as Attatched Devices and must be controlled
    
    189
    -        by the Primary Device.
    
    190
    -        """
    
    191
    -
    
    192
    -        self._name = str(uuid.uuid4())
    
    193
    -        self._properties = {}
    
    194
    -
    
    195
    -        if properties:
    
    196
    -            for k, v in properties.items():
    
    197
    -                if k == 'os':
    
    198
    -                    self._properties[k] = v
    
    199
    -
    
    200
    -                elif k == 'docker':
    
    201
    -                    if v not in ('True', 'False'):
    
    202
    -                        raise ValueError('Value not supported: [{}]'.format(v))
    
    203
    -                    self._properties[k] = v
    
    204
    -
    
    205
    -                else:
    
    206
    -                    raise KeyError('Key not supported: [{}]'.format(k))
    
    207
    -
    
    208
    -    @property
    
    209
    -    def name(self):
    
    210
    -        return self._name
    
    211
    -
    
    212
    -    @property
    
    213
    -    def properties(self):
    
    214
    -        return self._properties
    
    215
    -
    
    216
    -    def get_pb2(self):
    
    217
    -        device = worker_pb2.Device(handle=self._name)
    
    218
    -        property_message = worker_pb2.Device.Property()
    
    219
    -        for k, v in self._properties.items():
    
    220
    -            property_message.key = k
    
    221
    -            property_message.value = v
    
    222
    -            device.properties.extend([property_message])
    
    223
    -        return device

  • buildgrid/bot/hardware/__init__.py

  • buildgrid/bot/hardware/device.py
    1
    +# Copyright (C) 2018 Bloomberg LP
    
    2
    +#
    
    3
    +# Licensed under the Apache License, Version 2.0 (the "License");
    
    4
    +# you may not use this file except in compliance with the License.
    
    5
    +# You may obtain a copy of the License at
    
    6
    +#
    
    7
    +#  <http://www.apache.org/licenses/LICENSE-2.0>
    
    8
    +#
    
    9
    +# Unless required by applicable law or agreed to in writing, software
    
    10
    +# distributed under the License is distributed on an "AS IS" BASIS,
    
    11
    +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    
    12
    +# See the License for the specific language governing permissions and
    
    13
    +# limitations under the License.
    
    14
    +
    
    15
    +
    
    16
    +"""
    
    17
    +Device
    
    18
    +======
    
    19
    +
    
    20
    +A device.
    
    21
    +"""
    
    22
    +
    
    23
    +
    
    24
    +import uuid
    
    25
    +from buildgrid._protos.google.devtools.remoteworkers.v1test2 import worker_pb2
    
    26
    +
    
    27
    +class Device:
    
    28
    +
    
    29
    +    def __init__(self, properties=None):
    
    30
    +        """ Creates devices available to the worker
    
    31
    +        The first device is know as the Primary Device - the revice which
    
    32
    +        is running a bit and responsible to actually executing commands.
    
    33
    +        All other devices are known as Attatched Devices and must be controlled
    
    34
    +        by the Primary Device.
    
    35
    +
    
    36
    +        properties (list(dict(string : string))) : Properties of device. Keys may
    
    37
    +        repeated.
    
    38
    +        """
    
    39
    +
    
    40
    +        self._properties = {}
    
    41
    +        self.__property_keys = ['os', 'has-docker']
    
    42
    +        self.__name = str(uuid.uuid4())
    
    43
    +
    
    44
    +        if properties:
    
    45
    +            for prop in properties:
    
    46
    +                self._add_property(prop)
    
    47
    +
    
    48
    +    @property
    
    49
    +    def name(self):
    
    50
    +        return self.__name
    
    51
    +
    
    52
    +    @property
    
    53
    +    def properties(self):
    
    54
    +        return self._properties
    
    55
    +
    
    56
    +    def get_pb2(self):
    
    57
    +        device = worker_pb2.Device(handle=self.__name)
    
    58
    +        for k, v in self._properties.items():
    
    59
    +            for prop in v:
    
    60
    +                property_message = worker_pb2.Device.Property()
    
    61
    +                property_message.key = k
    
    62
    +                property_message.value = prop
    
    63
    +                device.properties.extend([property_message])
    
    64
    +        return device
    
    65
    +
    
    66
    +    def _add_property(self, key, value):
    
    67
    +        if key in self.__property_keys:
    
    68
    +            prop = self._properties.get(key)
    
    69
    +            if not prop:
    
    70
    +                self._properties[key] = [value]
    
    71
    +            else:
    
    72
    +                prop[key].append(value)
    
    73
    +
    
    74
    +        else:
    
    75
    +            raise KeyError('Key not supported: [{}]'.format(key))

  • buildgrid/bot/hardware/interface.py
    1
    +# Copyright (C) 2018 Bloomberg LP
    
    2
    +#
    
    3
    +# Licensed under the Apache License, Version 2.0 (the "License");
    
    4
    +# you may not use this file except in compliance with the License.
    
    5
    +# You may obtain a copy of the License at
    
    6
    +#
    
    7
    +#  <http://www.apache.org/licenses/LICENSE-2.0>
    
    8
    +#
    
    9
    +# Unless required by applicable law or agreed to in writing, software
    
    10
    +# distributed under the License is distributed on an "AS IS" BASIS,
    
    11
    +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    
    12
    +# See the License for the specific language governing permissions and
    
    13
    +# limitations under the License.
    
    14
    +
    
    15
    +
    
    16
    +"""
    
    17
    +HardwareInterface
    
    18
    +=================
    
    19
    +
    
    20
    +Class to configure hardware and check requirements of leases.
    
    21
    +
    
    22
    +In the future this could also be used to request and display
    
    23
    +the status of hardware.
    
    24
    +"""
    
    25
    +
    
    26
    +
    
    27
    +from buildgrid._exceptions import FailedPreconditionError
    
    28
    +
    
    29
    +
    
    30
    +class HardwareInterface:
    
    31
    +
    
    32
    +    def __init__(self, worker):
    
    33
    +        self._worker = worker
    
    34
    +
    
    35
    +    def configure_hardware(self, requirements):
    
    36
    +        """ Can check if the requirements can be met and also
    
    37
    +        in the future, potentially configure the hardware.
    
    38
    +        """
    
    39
    +        worker = self._worker
    
    40
    +
    
    41
    +        for config_requirement in requirements.configs:
    
    42
    +            if config_requirement.key not in worker.configs:
    
    43
    +                raise FailedPreconditionError("Config not supported: [{}]".format(config_requirement))
    
    44
    +
    
    45
    +    def get_worker_pb2(self):
    
    46
    +        return self._worker.get_pb2()

  • buildgrid/bot/hardware/worker.py
    1
    +# Copyright (C) 2018 Bloomberg LP
    
    2
    +#
    
    3
    +# Licensed under the Apache License, Version 2.0 (the "License");
    
    4
    +# you may not use this file except in compliance with the License.
    
    5
    +# You may obtain a copy of the License at
    
    6
    +#
    
    7
    +#  <http://www.apache.org/licenses/LICENSE-2.0>
    
    8
    +#
    
    9
    +# Unless required by applicable law or agreed to in writing, software
    
    10
    +# distributed under the License is distributed on an "AS IS" BASIS,
    
    11
    +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    
    12
    +# See the License for the specific language governing permissions and
    
    13
    +# limitations under the License.
    
    14
    +
    
    15
    +
    
    16
    +from buildgrid._protos.google.devtools.remoteworkers.v1test2 import worker_pb2
    
    17
    +
    
    18
    +
    
    19
    +class Worker:
    
    20
    +
    
    21
    +    def __init__(self, properties=None, configs=None):
    
    22
    +        self._devices = []
    
    23
    +        self._configs = {}
    
    24
    +        self._properties = {}
    
    25
    +        self.__property_keys = ['pool']
    
    26
    +        self.__config_keys = ['DockerImage']
    
    27
    +
    
    28
    +        if properties:
    
    29
    +            for k, v in properties.items():
    
    30
    +                if k in self.__property_keys:
    
    31
    +                    self._add_properties(k, v)
    
    32
    +
    
    33
    +        if configs:
    
    34
    +            for k, v in configs.items():
    
    35
    +                self._add_config(k, v)
    
    36
    +
    
    37
    +    @property
    
    38
    +    def configs(self):
    
    39
    +        return self._configs
    
    40
    +
    
    41
    +    @property
    
    42
    +    def properties(self):
    
    43
    +        return self._properties
    
    44
    +
    
    45
    +    def add_device(self, device):
    
    46
    +        self._devices.append(device)
    
    47
    +
    
    48
    +    def get_pb2(self):
    
    49
    +        devices = [device.get_pb2() for device in self._devices]
    
    50
    +        worker = worker_pb2.Worker(devices=devices)
    
    51
    +
    
    52
    +        for k, v in self._properties.items():
    
    53
    +            for prop in v:
    
    54
    +                property_message = worker_pb2.Device.Property()
    
    55
    +                property_message.key = k
    
    56
    +                property_message.value = prop
    
    57
    +                device.properties.extend([property_message])
    
    58
    +
    
    59
    +        for k, v in self._configs.items():
    
    60
    +            for cfg in v:
    
    61
    +                config_message = worker_pb2.Worker.Config()
    
    62
    +                config.key = k
    
    63
    +                config_message.value = cfg
    
    64
    +                worker.configs.extend([config_message])
    
    65
    +
    
    66
    +        return worker
    
    67
    +
    
    68
    +    def _add_config(self, key, value):
    
    69
    +        if key in self.__config_keys:
    
    70
    +            cfg = self._configs.get(key)
    
    71
    +            if not cfg:
    
    72
    +                self._configs[key] = [value]
    
    73
    +            else:
    
    74
    +                cfg[key].append(value)
    
    75
    +
    
    76
    +        else:
    
    77
    +            raise KeyError('Key not supported: [{}]'.format(key))
    
    78
    +
    
    79
    +    def _add_property(self, key, value):
    
    80
    +        if key in self.__property_keys:
    
    81
    +            prop = self._properties.get(key)
    
    82
    +            if not prop:
    
    83
    +                self._properties[key] = [value]
    
    84
    +            else:
    
    85
    +                prop[key].append(value)
    
    86
    +
    
    87
    +        else:
    
    88
    +            raise KeyError('Key not supported: [{}]'.format(key))

  • buildgrid/bot/bot_interface.pybuildgrid/bot/interface.py
    ... ... @@ -15,7 +15,7 @@
    15 15
     
    
    16 16
     """
    
    17 17
     Bot Interface
    
    18
    -====
    
    18
    +=============
    
    19 19
     
    
    20 20
     Interface to grpc
    
    21 21
     """
    
    ... ... @@ -38,10 +38,16 @@ class BotInterface:
    38 38
         def create_bot_session(self, parent, bot_session):
    
    39 39
             request = bots_pb2.CreateBotSessionRequest(parent=parent,
    
    40 40
                                                        bot_session=bot_session)
    
    41
    -        return self._stub.CreateBotSession(request)
    
    41
    +        try:
    
    42
    +            return self._stub.CreateBotSession(request)
    
    43
    +        except Exception as e:
    
    44
    +            self.logger.error("Error creating bot session: [{}]".format(e))
    
    42 45
     
    
    43 46
         def update_bot_session(self, bot_session, update_mask=None):
    
    44 47
             request = bots_pb2.UpdateBotSessionRequest(name=bot_session.name,
    
    45 48
                                                        bot_session=bot_session,
    
    46 49
                                                        update_mask=update_mask)
    
    47
    -        return self._stub.UpdateBotSession(request)
    50
    +        try:
    
    51
    +            return self._stub.UpdateBotSession(request)
    
    52
    +        except Exception as e:
    
    53
    +            self.logger.error("Error updating bot session: [{}]".format(e))

  • buildgrid/bot/session.py
    1
    +# Copyright (C) 2018 Bloomberg LP
    
    2
    +#
    
    3
    +# Licensed under the Apache License, Version 2.0 (the "License");
    
    4
    +# you may not use this file except in compliance with the License.
    
    5
    +# You may obtain a copy of the License at
    
    6
    +#
    
    7
    +#  <http://www.apache.org/licenses/LICENSE-2.0>
    
    8
    +#
    
    9
    +# Unless required by applicable law or agreed to in writing, software
    
    10
    +# distributed under the License is distributed on an "AS IS" BASIS,
    
    11
    +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    
    12
    +# See the License for the specific language governing permissions and
    
    13
    +# limitations under the License.
    
    14
    +
    
    15
    +# Disable broad exception catch
    
    16
    +# pylint: disable=broad-except
    
    17
    +
    
    18
    +
    
    19
    +"""
    
    20
    +Bot Session
    
    21
    +===========
    
    22
    +
    
    23
    +Allows connections
    
    24
    +"""
    
    25
    +import asyncio
    
    26
    +import logging
    
    27
    +import platform
    
    28
    +import pdb
    
    29
    +# pdb.set_trace()
    
    30
    +
    
    31
    +import grpc
    
    32
    +
    
    33
    +from buildgrid._enums import BotStatus, LeaseState
    
    34
    +from buildgrid._protos.google.devtools.remoteworkers.v1test2 import bots_pb2
    
    35
    +from buildgrid._protos.google.rpc import code_pb2
    
    36
    +from buildgrid._exceptions import BotError
    
    37
    +
    
    38
    +from buildgrid._exceptions import FailedPreconditionError
    
    39
    +
    
    40
    +from .tenantmanager import TenantManager
    
    41
    +
    
    42
    +class BotSession:
    
    43
    +    def __init__(self, parent, bots_interface, hardware_interface):
    
    44
    +        """ Unique bot ID within the farm used to identify this bot
    
    45
    +        Needs to be human readable.
    
    46
    +        All prior sessions with bot_id of same ID are invalidated.
    
    47
    +        If a bot attempts to update an invalid session, it must be rejected and
    
    48
    +        may be put in quarantine.
    
    49
    +        """
    
    50
    +
    
    51
    +        self.logger = logging.getLogger(__name__)
    
    52
    +
    
    53
    +        self._bots_interface = bots_interface
    
    54
    +        self._hardware_interface = hardware_interface
    
    55
    +
    
    56
    +        self._status = BotStatus.OK.value
    
    57
    +        self._tenant_manager = TenantManager()
    
    58
    +
    
    59
    +        self.__parent = parent
    
    60
    +        self.__bot_id = '{}.{}'.format(parent, platform.node())
    
    61
    +        self.__name = None
    
    62
    +
    
    63
    +        # Remove these and add to a worker config in the future
    
    64
    +        self._work = None
    
    65
    +        self._context = None
    
    66
    +
    
    67
    +    @property
    
    68
    +    def bot_id(self):
    
    69
    +        return self.__bot_id
    
    70
    +
    
    71
    +    def create_bot_session(self, work, context):
    
    72
    +        # Drop this when properly adding to the work
    
    73
    +        self._work = work
    
    74
    +        self._context = context
    
    75
    +
    
    76
    +        self.logger.debug("Creating bot session")
    
    77
    +
    
    78
    +        session = self._bots_interface.create_bot_session(self.__parent, self.get_pb2())
    
    79
    +        self.__name = session.name
    
    80
    +
    
    81
    +        self.logger.info("Created bot session with name: [{}]".format(self.__name))
    
    82
    +
    
    83
    +        for lease in session.leases:
    
    84
    +            self._register_lease(lease)
    
    85
    +
    
    86
    +    def update_bot_session(self):
    
    87
    +        self.logger.debug("Updating bot session: [{}]".format(self.__bot_id))
    
    88
    +
    
    89
    +        session = self._bots_interface.update_bot_session(self.get_pb2())
    
    90
    +        server_ids = []
    
    91
    +
    
    92
    +        for lease in session.leases:
    
    93
    +            server_ids.append(lease.id)
    
    94
    +
    
    95
    +            lease_state = LeaseState(lease.state)
    
    96
    +            if lease_state == LeaseState.PENDING:
    
    97
    +                self._register_lease(lease)
    
    98
    +
    
    99
    +            elif lease_state == LeaseState.CANCELLED:
    
    100
    +                self._tenant_manager.cancel_tenancy(lease_id)
    
    101
    +
    
    102
    +        closed_lease_ids = [x for x in self._tenant_manager.get_lease_ids() if x not in server_ids]
    
    103
    +        for lease_id in closed_lease_ids:
    
    104
    +            self._tenant_manager.remove_tenant(lease_id)
    
    105
    +
    
    106
    +    def get_pb2(self):
    
    107
    +        return bots_pb2.BotSession(worker=self._hardware_interface.get_worker_pb2(),
    
    108
    +                                   status=self._status,
    
    109
    +                                   leases=self._tenant_manager.get_leases(),
    
    110
    +                                   bot_id=self.__bot_id,
    
    111
    +                                   name=self.__name)
    
    112
    +
    
    113
    +    def _register_lease(self, lease):
    
    114
    +        lease_id = lease.id
    
    115
    +        try:
    
    116
    +            self._tenant_manager.create_tenancy(lease)
    
    117
    +
    
    118
    +        except KeyError as e:
    
    119
    +            self.logger.debug("Cannot register lease=[{}]. {}".format(lease.id, e))
    
    120
    +
    
    121
    +        else:
    
    122
    +            try:
    
    123
    +                self._hardware_interface.configure_hardware(lease.requirements)
    
    124
    +
    
    125
    +            except FailedPreconditionError as e:
    
    126
    +                self.logger.error("Failed precondition: [{}]".format(e))
    
    127
    +                self._tenant_manager.complete_lease(lease_id, status=code_pb2.FailedPreconditionError)
    
    128
    +
    
    129
    +            else:
    
    130
    +                self._tenant_manager.create_work(lease_id, self._work, self._context)

  • buildgrid/bot/tenant.py
    1
    +# Copyright (C) 2018 Bloomberg LP
    
    2
    +#
    
    3
    +# Licensed under the Apache License, Version 2.0 (the "License");
    
    4
    +# you may not use this file except in compliance with the License.
    
    5
    +# You may obtain a copy of the License at
    
    6
    +#
    
    7
    +#  <http://www.apache.org/licenses/LICENSE-2.0>
    
    8
    +#
    
    9
    +# Unless required by applicable law or agreed to in writing, software
    
    10
    +# distributed under the License is distributed on an "AS IS" BASIS,
    
    11
    +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    
    12
    +# See the License for the specific language governing permissions and
    
    13
    +# limitations under the License.
    
    14
    +
    
    15
    +"""
    
    16
    +Tenant
    
    17
    +======
    
    18
    +
    
    19
    +Handles leased and runs leased work.
    
    20
    +"""
    
    21
    +
    
    22
    +import asyncio
    
    23
    +import logging
    
    24
    +
    
    25
    +from functools import partial
    
    26
    +
    
    27
    +from buildgrid._protos.google.devtools.remoteworkers.v1test2 import bots_pb2
    
    28
    +
    
    29
    +from buildgrid._enums import LeaseState
    
    30
    +
    
    31
    +
    
    32
    +class Tenant:
    
    33
    +
    
    34
    +    def __init__(self, lease):
    
    35
    +
    
    36
    +        if lease.state != LeaseState.PENDING.value:
    
    37
    +            raise ValueError("Lease state not `PENDING`: {}".format(lease.state))
    
    38
    +
    
    39
    +        self.logger = logging.getLogger(__name__)
    
    40
    +        self.lease_finished = False
    
    41
    +
    
    42
    +        self._lease = lease
    
    43
    +
    
    44
    +    @property
    
    45
    +    def lease(self):
    
    46
    +        return self._lease
    
    47
    +
    
    48
    +    def get_lease_state(self):
    
    49
    +        return LeaseState(self._lease.state)
    
    50
    +
    
    51
    +    def update_lease_state(self, state):
    
    52
    +        self._lease.state = state.value
    
    53
    +
    
    54
    +    def update_lease_status(self, status):
    
    55
    +        self._lease.status.CopyFrom(status)
    
    56
    +
    
    57
    +    async def run_work(self, work, context=None, executor=None):
    
    58
    +        self.logger.debug("Work created: [{}]".format(self._lease.id))
    
    59
    +
    
    60
    +        # Ensures if anything happens to the lease during work, we still have a copy.
    
    61
    +        lease = bots_pb2.Lease()
    
    62
    +        lease.CopyFrom(self._lease)
    
    63
    +
    
    64
    +        loop = asyncio.get_event_loop()
    
    65
    +
    
    66
    +        try:
    
    67
    +            lease = await loop.run_in_executor(executor, partial(work, context, self._lease))
    
    68
    +            self._lease.CopyFrom(lease)
    
    69
    +
    
    70
    +        except asyncio.CancelledError as e:
    
    71
    +            self.logger.error("Task cancelled: [{}]".format(e))
    
    72
    +
    
    73
    +        except grpc.RpcError as e:
    
    74
    +            self.logger.error("RPC error thrown: [{}]".format(e))
    
    75
    +            lease.status.CopyFrom(e.code())
    
    76
    +
    
    77
    +        except BotError as e:
    
    78
    +            self.logger.error("Internal bot error thrown: [{}]".format(e))
    
    79
    +            lease.status.code = code_pb2.INTERNAL
    
    80
    +
    
    81
    +        except Exception as e:
    
    82
    +            self.logger.error("Exception thrown: [{}]".format(e))
    
    83
    +            lease.status.code = code_pb2.INTERNAL
    
    84
    +
    
    85
    +        self.logger.debug("Work completed: [{}]".format(lease.id))

  • buildgrid/bot/tenantmanager.py
    1
    +# Copyright (C) 2018 Bloomberg LP
    
    2
    +#
    
    3
    +# Licensed under the Apache License, Version 2.0 (the "License");
    
    4
    +# you may not use this file except in compliance with the License.
    
    5
    +# You may obtain a copy of the License at
    
    6
    +#
    
    7
    +#  <http://www.apache.org/licenses/LICENSE-2.0>
    
    8
    +#
    
    9
    +# Unless required by applicable law or agreed to in writing, software
    
    10
    +# distributed under the License is distributed on an "AS IS" BASIS,
    
    11
    +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    
    12
    +# See the License for the specific language governing permissions and
    
    13
    +# limitations under the License.
    
    14
    +
    
    15
    +
    
    16
    +"""
    
    17
    +TenantManager
    
    18
    +=============
    
    19
    +
    
    20
    +Looks after leases of work.
    
    21
    +"""
    
    22
    +
    
    23
    +
    
    24
    +import asyncio
    
    25
    +import logging
    
    26
    +from functools import partial
    
    27
    +
    
    28
    +import grpc
    
    29
    +
    
    30
    +from buildgrid._enums import LeaseState
    
    31
    +
    
    32
    +from .tenant import Tenant
    
    33
    +
    
    34
    +class TenantManager:
    
    35
    +
    
    36
    +    def __init__(self):
    
    37
    +        self.logger = logging.getLogger(__name__)
    
    38
    +        self._tenants = {}
    
    39
    +        self._tasks = {}
    
    40
    +
    
    41
    +    def create_tenancy(self, lease):
    
    42
    +        lease_id = lease.id
    
    43
    +
    
    44
    +        if lease_id not in self._tenants:
    
    45
    +            tenant = Tenant(lease)
    
    46
    +            self._tenants[lease_id] = tenant
    
    47
    +
    
    48
    +        else:
    
    49
    +            raise KeyError("Lease id already exists: [{}]".format(lease_id))
    
    50
    +
    
    51
    +    def remove_tenant(self, lease_id):
    
    52
    +        state = self.get_lease_state(lease_id)
    
    53
    +        if state == LeaseState.PENDING or state == LeaseState.ACTIVE:
    
    54
    +            self.logger.error("Attempting to remove a lease not finished."
    
    55
    +                              "Bot will not remove lease."
    
    56
    +                              "Lease: [{}]".format(self._tenants[lease_id].lease))
    
    57
    +
    
    58
    +        else:
    
    59
    +            self._tenants.pop(lease_id)
    
    60
    +            self._tasks.pop(lease_id)
    
    61
    +
    
    62
    +    def get_leases(self):
    
    63
    +        leases = []
    
    64
    +        for tenant in self._tenants.values():
    
    65
    +            leases.append(tenant.lease)
    
    66
    +
    
    67
    +        if not leases:
    
    68
    +            return None
    
    69
    +
    
    70
    +        return leases
    
    71
    +
    
    72
    +    def get_lease_ids(self):
    
    73
    +        return self._tenants.keys()
    
    74
    +
    
    75
    +    def get_lease_state(self, lease_id):
    
    76
    +        return self._tenants[lease_id].get_lease_state()
    
    77
    +
    
    78
    +    def complete_lease(self, lease_id, status, task=None):
    
    79
    +        if status is not None:
    
    80
    +            self._update_lease_status(lease_id, status)
    
    81
    +
    
    82
    +        if self._tenants[lease_id].get_lease_state() != LeaseState.CANCELLED:
    
    83
    +            self._update_lease_state(lease_id, LeaseState.COMPLETED)
    
    84
    +
    
    85
    +    def create_work(self, lease_id, work, context):
    
    86
    +        self._update_lease_state(lease_id, LeaseState.ACTIVE)
    
    87
    +        tenant = self._tenants[lease_id]
    
    88
    +        task = asyncio.ensure_future(tenant.run_work(work, context))
    
    89
    +
    
    90
    +        task.add_done_callback(partial(self.complete_lease, lease_id, None))
    
    91
    +
    
    92
    +        self._tasks[lease_id] = task
    
    93
    +
    
    94
    +    def cancel_tenancy(self, lease_id):
    
    95
    +        self._update_lease_state(LeaseState.CANCELLED)
    
    96
    +        self._tasks[lease_id].cancel()
    
    97
    +
    
    98
    +    def _update_lease_state(self, lease_id, state):
    
    99
    +        self._tenants[lease_id].update_lease_state(state)
    
    100
    +
    
    101
    +    def _update_lease_status(self, lease_id, status):
    
    102
    +        self._tenants[lease_id].update_lease_status(status)

  • buildgrid/server/bots/instance.py
    ... ... @@ -34,7 +34,7 @@ class BotsInterface:
    34 34
             self.logger = logging.getLogger(__name__)
    
    35 35
     
    
    36 36
             self._bot_ids = {}
    
    37
    -        self._bot_sessions = {}
    
    37
    +        self._assigned_leases = {}
    
    38 38
             self._scheduler = scheduler
    
    39 39
     
    
    40 40
         def register_instance_with_server(self, instance_name, server):
    
    ... ... @@ -59,18 +59,15 @@ class BotsInterface:
    59 59
     
    
    60 60
             # Bot session name, selected by the server
    
    61 61
             name = "{}/{}".format(parent, str(uuid.uuid4()))
    
    62
    -
    
    63 62
             bot_session.name = name
    
    64 63
     
    
    65 64
             self._bot_ids[name] = bot_id
    
    66
    -        self._bot_sessions[name] = bot_session
    
    67 65
             self.logger.info("Created bot session name=[{}] with bot_id=[{}]".format(name, bot_id))
    
    68 66
     
    
    69
    -        # TODO: Send worker capabilities to the scheduler!
    
    70
    -        leases = self._scheduler.request_job_leases({})
    
    71
    -        if leases:
    
    72
    -            bot_session.leases.extend(leases)
    
    67
    +        # We want to keep a copy of lease ids we have assigned
    
    68
    +        self._assigned_leases[name] = set()
    
    73 69
     
    
    70
    +        self._request_leases(bot_session)
    
    74 71
             return bot_session
    
    75 72
     
    
    76 73
         def update_bot_session(self, name, bot_session):
    
    ... ... @@ -79,70 +76,54 @@ class BotsInterface:
    79 76
             """
    
    80 77
             self.logger.debug("Updating bot session name={}".format(name))
    
    81 78
             self._check_bot_ids(bot_session.bot_id, name)
    
    79
    +        self._check_assigned_leases(bot_session)
    
    80
    +
    
    81
    +        for lease in bot_session.leases:
    
    82
    +            checked_lease = self._check_lease_state(lease)
    
    83
    +            if not checked_lease:
    
    84
    +                # TODO: Make sure we don't need this
    
    85
    +                try:
    
    86
    +                    self._assigned_leases[name].remove(lease.id)
    
    87
    +                except KeyError:
    
    88
    +                    pass
    
    89
    +                lease.Clear()
    
    90
    +
    
    91
    +        self._request_leases(bot_session)
    
    92
    +        return bot_session
    
    82 93
     
    
    83
    -        leases = filter(None, [self.check_states(lease) for lease in bot_session.leases])
    
    84
    -
    
    85
    -        del bot_session.leases[:]
    
    86
    -        bot_session.leases.extend(leases)
    
    87
    -
    
    94
    +    def _request_leases(self, bot_session):
    
    88 95
             # TODO: Send worker capabilities to the scheduler!
    
    96
    +        # Only send one lease at a time currently.
    
    89 97
             if not bot_session.leases:
    
    90 98
                 leases = self._scheduler.request_job_leases({})
    
    91 99
                 if leases:
    
    100
    +                for lease in leases:
    
    101
    +                    self._assigned_leases[bot_session.name].add(lease.id)
    
    92 102
                     bot_session.leases.extend(leases)
    
    93 103
     
    
    94
    -        self._bot_sessions[name] = bot_session
    
    95
    -        return bot_session
    
    104
    +    def _check_lease_state(self, lease):
    
    105
    +        # careful here
    
    106
    +        # should store bot name in scheduler
    
    107
    +        lease_state = LeaseState(lease.state)
    
    108
    +
    
    109
    +        # Lease has replied with cancelled, remove
    
    110
    +        if lease_state == LeaseState.CANCELLED:
    
    111
    +            return None
    
    96 112
     
    
    97
    -    def check_states(self, client_lease):
    
    98
    -        """ Edge detector for states
    
    99
    -        """
    
    100
    -        # TODO: Handle cancelled states
    
    101 113
             try:
    
    102
    -            server_lease = self._scheduler.get_job_lease(client_lease.id)
    
    114
    +            if self._scheduler.get_job_lease_cancelled(lease.id):
    
    115
    +                lease.state.CopyFrom(LeaseState.CANCELLED.value)
    
    116
    +                return lease
    
    103 117
             except KeyError:
    
    104
    -            raise InvalidArgumentError("Lease not found on server: [{}]".format(client_lease))
    
    105
    -
    
    106
    -        server_state = LeaseState(server_lease.state)
    
    107
    -        client_state = LeaseState(client_lease.state)
    
    108
    -
    
    109
    -        if server_state == LeaseState.PENDING:
    
    118
    +            # Job does not exist, remove from bot.
    
    119
    +            return None
    
    110 120
     
    
    111
    -            if client_state == LeaseState.ACTIVE:
    
    112
    -                self._scheduler.update_job_lease_state(client_lease.id,
    
    113
    -                                                       LeaseState.ACTIVE)
    
    114
    -            elif client_state == LeaseState.COMPLETED:
    
    115
    -                # TODO: Lease was rejected
    
    116
    -                raise NotImplementedError("'Not Accepted' is unsupported")
    
    117
    -            else:
    
    118
    -                raise OutOfSyncError("Server lease: [{}]. Client lease: [{}]".format(server_lease, client_lease))
    
    121
    +        self._scheduler.update_job_lease(lease)
    
    119 122
     
    
    120
    -        elif server_state == LeaseState.ACTIVE:
    
    123
    +        if lease_state == LeaseState.COMPLETED:
    
    124
    +            return None
    
    121 125
     
    
    122
    -            if client_state == LeaseState.ACTIVE:
    
    123
    -                pass
    
    124
    -
    
    125
    -            elif client_state == LeaseState.COMPLETED:
    
    126
    -                self._scheduler.update_job_lease_state(client_lease.id,
    
    127
    -                                                       LeaseState.COMPLETED,
    
    128
    -                                                       lease_status=client_lease.status,
    
    129
    -                                                       lease_result=client_lease.result)
    
    130
    -                return None
    
    131
    -
    
    132
    -            else:
    
    133
    -                raise OutOfSyncError("Server lease: [{}]. Client lease: [{}]".format(server_lease, client_lease))
    
    134
    -
    
    135
    -        elif server_state == LeaseState.COMPLETED:
    
    136
    -            raise OutOfSyncError("Server lease: [{}]. Client lease: [{}]".format(server_lease, client_lease))
    
    137
    -
    
    138
    -        elif server_state == LeaseState.CANCELLED:
    
    139
    -            raise NotImplementedError("Cancelled states not supported yet")
    
    140
    -
    
    141
    -        else:
    
    142
    -            # Sould never get here
    
    143
    -            raise OutOfSyncError("State now allowed: {}".format(server_state))
    
    144
    -
    
    145
    -        return client_lease
    
    126
    +        return lease
    
    146 127
     
    
    147 128
         def _check_bot_ids(self, bot_id, name=None):
    
    148 129
             """ Checks the ID and the name of the bot.
    
    ... ... @@ -164,6 +145,19 @@ class BotsInterface:
    164 145
                             'Bot id already registered. ID sent: [{}].'
    
    165 146
                             'Id registered: [{}] with name: [{}]'.format(bot_id, _bot_id, _name))
    
    166 147
     
    
    148
    +    def _check_assigned_leases(self, bot_session):
    
    149
    +        session_lease_ids = []
    
    150
    +
    
    151
    +        for lease in bot_session.leases:
    
    152
    +            session_lease_ids.append(lease.id)
    
    153
    +
    
    154
    +        for lease_id in self._assigned_leases[bot_session.name]:
    
    155
    +            if lease_id not in session_lease_ids:
    
    156
    +                self.logger.error("Assigned lease id=[{}],"
    
    157
    +                                  " not found on bot with name=[{}] and id=[{}]."
    
    158
    +                                  " Retrying job".format(lease_id, bot_session.name, bot_session.bot_id))
    
    159
    +                self._scheduler.retry_job(lease_id)
    
    160
    +
    
    167 161
         def _close_bot_session(self, name):
    
    168 162
             """ Before removing the session, close any leases and
    
    169 163
             requeue with high priority.
    
    ... ... @@ -174,10 +168,9 @@ class BotsInterface:
    174 168
                 raise InvalidArgumentError("Bot id does not exist: [{}]".format(name))
    
    175 169
     
    
    176 170
             self.logger.debug("Attempting to close [{}] with name: [{}]".format(bot_id, name))
    
    177
    -        for lease in self._bot_sessions[name].leases:
    
    178
    -            if lease.state != LeaseState.COMPLETED.value:
    
    179
    -                # TODO: Be wary here, may need to handle rejected leases in future
    
    180
    -                self._scheduler.retry_job(lease.id)
    
    171
    +        for lease_id in self._assigned_leases[name]:
    
    172
    +            self._scheduler.retry_job(lease_id)
    
    173
    +        self._assigned_leases.pop(name)
    
    181 174
     
    
    182 175
             self.logger.debug("Closing bot session: [{}]".format(name))
    
    183 176
             self._bot_ids.pop(name)
    

  • buildgrid/server/job.py
    ... ... @@ -19,11 +19,9 @@ import uuid
    19 19
     from google.protobuf import timestamp_pb2
    
    20 20
     
    
    21 21
     from buildgrid._enums import LeaseState, OperationStage
    
    22
    -from buildgrid._exceptions import CancelledError
    
    23 22
     from buildgrid._protos.build.bazel.remote.execution.v2 import remote_execution_pb2
    
    24 23
     from buildgrid._protos.google.devtools.remoteworkers.v1test2 import bots_pb2
    
    25 24
     from buildgrid._protos.google.longrunning import operations_pb2
    
    26
    -from buildgrid._protos.google.rpc import code_pb2
    
    27 25
     
    
    28 26
     
    
    29 27
     class Job:
    
    ... ... @@ -36,18 +34,16 @@ class Job:
    36 34
             self._operation = operations_pb2.Operation()
    
    37 35
             self._lease = None
    
    38 36
     
    
    37
    +        self.__lease_cancelled = False
    
    39 38
             self.__execute_response = None
    
    40 39
             self.__operation_metadata = remote_execution_pb2.ExecuteOperationMetadata()
    
    41
    -
    
    42 40
             self.__queued_timestamp = timestamp_pb2.Timestamp()
    
    43 41
             self.__worker_start_timestamp = timestamp_pb2.Timestamp()
    
    44 42
             self.__worker_completed_timestamp = timestamp_pb2.Timestamp()
    
    45 43
     
    
    46
    -        self.__operation_cancelled = False
    
    47
    -        self.__lease_cancelled = False
    
    48
    -
    
    49 44
             self.__operation_metadata.action_digest.CopyFrom(action_digest)
    
    50 45
             self.__operation_metadata.stage = OperationStage.UNKNOWN.value
    
    46
    +        self.__operation_cancelled = False
    
    51 47
     
    
    52 48
             self._action.CopyFrom(action)
    
    53 49
             self._do_not_cache = self._action.do_not_cache
    
    ... ... @@ -98,6 +94,10 @@ class Job:
    98 94
             else:
    
    99 95
                 return None
    
    100 96
     
    
    97
    +    @property
    
    98
    +    def lease_cancelled(self):
    
    99
    +        return self.__lease_cancelled
    
    100
    +
    
    101 101
         @property
    
    102 102
         def n_tries(self):
    
    103 103
             return self._n_tries
    
    ... ... @@ -136,9 +136,7 @@ class Job:
    136 136
             Only one :class:`Lease` can be emitted for a given job. This method
    
    137 137
             should only be used once, any furhter calls are ignored.
    
    138 138
             """
    
    139
    -        if self.__operation_cancelled:
    
    140
    -            return None
    
    141
    -        elif self._lease is not None:
    
    139
    +        if self._lease is not None:
    
    142 140
                 return None
    
    143 141
     
    
    144 142
             self._lease = bots_pb2.Lease()
    
    ... ... @@ -179,7 +177,7 @@ class Job:
    179 177
                 action_result = remote_execution_pb2.ActionResult()
    
    180 178
     
    
    181 179
                 # TODO: Make a distinction between build and bot failures!
    
    182
    -            if status.code != code_pb2.OK:
    
    180
    +            if status.code != 0:
    
    183 181
                     self._do_not_cache = True
    
    184 182
     
    
    185 183
                 if result is not None:
    
    ... ... @@ -196,15 +194,6 @@ class Job:
    196 194
                 self.__execute_response.cached_result = False
    
    197 195
                 self.__execute_response.status.CopyFrom(status)
    
    198 196
     
    
    199
    -    def cancel_lease(self):
    
    200
    -        """Triggers a job's :class:Lease cancellation.
    
    201
    -
    
    202
    -        This will not cancel the job's :class:Operation.
    
    203
    -        """
    
    204
    -        self.__lease_cancelled = True
    
    205
    -        if self._lease is not None:
    
    206
    -            self.update_lease_state(LeaseState.CANCELLED)
    
    207
    -
    
    208 197
         def update_operation_stage(self, stage):
    
    209 198
             """Operates a stage transition for the job's :class:Operation.
    
    210 199
     
    
    ... ... @@ -240,6 +229,10 @@ class Job:
    240 229
             if self.__operation_cancelled:
    
    241 230
                 raise CancelledError(self.__execute_response.status.message)
    
    242 231
     
    
    232
    +    def cancel_lease(self):
    
    233
    +        self.__lease_cancelled = True
    
    234
    +        self._update_lease_state(LeaseState.CANCELLED)
    
    235
    +
    
    243 236
         def cancel_operation(self):
    
    244 237
             """Triggers a job's :class:Operation cancellation.
    
    245 238
     
    

  • buildgrid/server/scheduler.py
    ... ... @@ -74,7 +74,8 @@ class Scheduler:
    74 74
                     # TODO: Mark these jobs as done
    
    75 75
                 else:
    
    76 76
                     job.update_operation_stage(OperationStage.QUEUED)
    
    77
    -                self.queue.appendleft(job)
    
    77
    +                job.update_lease_state(LeaseState.PENDING)
    
    78
    +                self.queue.append(job)
    
    78 79
     
    
    79 80
         def list_jobs(self):
    
    80 81
             return self.jobs.values()
    
    ... ... @@ -91,15 +92,19 @@ class Scheduler:
    91 92
                 return []
    
    92 93
     
    
    93 94
             job = self.queue.popleft()
    
    94
    -        # For now, one lease at a time:
    
    95
    -        lease = job.create_lease()
    
    95
    +
    
    96
    +        lease = job.lease
    
    97
    +
    
    98
    +        if not lease:
    
    99
    +            # For now, one lease at a time:
    
    100
    +            lease = job.create_lease()
    
    96 101
     
    
    97 102
             if lease:
    
    98 103
                 return [lease]
    
    99 104
     
    
    100 105
             return None
    
    101 106
     
    
    102
    -    def update_job_lease_state(self, job_name, lease_state, lease_status=None, lease_result=None):
    
    107
    +    def update_job_lease(self, lease):
    
    103 108
             """Requests a state transition for a job's current :class:Lease.
    
    104 109
     
    
    105 110
             Args:
    
    ... ... @@ -110,7 +115,9 @@ class Scheduler:
    110 115
                 lease_result (google.protobuf.Any): the lease execution result, only
    
    111 116
                     required if `lease_state` is `COMPLETED`.
    
    112 117
             """
    
    113
    -        job = self.jobs[job_name]
    
    118
    +
    
    119
    +        job = self.jobs[lease.id]
    
    120
    +        lease_state = LeaseState(lease.state)
    
    114 121
     
    
    115 122
             if lease_state == LeaseState.PENDING:
    
    116 123
                 job.update_lease_state(LeaseState.PENDING)
    
    ... ... @@ -122,7 +129,7 @@ class Scheduler:
    122 129
     
    
    123 130
             elif lease_state == LeaseState.COMPLETED:
    
    124 131
                 job.update_lease_state(LeaseState.COMPLETED,
    
    125
    -                                   status=lease_status, result=lease_result)
    
    132
    +                                   status=lease.status, result=lease.result)
    
    126 133
     
    
    127 134
                 if self._action_cache is not None and not job.do_not_cache:
    
    128 135
                     self._action_cache.update_action_result(job.action_digest, job.action_result)
    
    ... ... @@ -133,6 +140,10 @@ class Scheduler:
    133 140
             """Returns the lease associated to job, if any have been emitted yet."""
    
    134 141
             return self.jobs[job_name].lease
    
    135 142
     
    
    143
    +    def get_job_lease_cancelled(self, job_name):
    
    144
    +        """Returns true if the lease is cancelled"""
    
    145
    +        return self.jobs[job_name].lease_cancelled
    
    146
    +
    
    136 147
         def get_job_operation(self, job_name):
    
    137 148
             """Returns the operation associated to job."""
    
    138 149
             return self.jobs[job_name].operation
    



  • [Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]