pod.py 4.7 KB
Newer Older
K
kuizhiqing 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
# 
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# 
#     http://www.apache.org/licenses/LICENSE-2.0
# 
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from collections import OrderedDict
from .container import Container

from .status import Status

import random
import time


class PodSepc(object):
    def __init__(self):
        self._name = ''.join(
            random.choice('abcdefghijklmnopqrstuvwxyz') for _ in range(6))

        # by controller
        self._init_containers: List[Container] = []
        self._containers: List[Container] = []

        #self.resource: Resource = None
        #self.status: Status = None

        self._rank = -1
37
        self._init_timeout = None
K
kuizhiqing 已提交
38 39 40 41 42 43 44 45 46 47
        self._restart = -1
        self._replicas = 0  # number of containers
        self._exit_code = 0


class Pod(PodSepc):
    def __init__(self):
        super().__init__()

    def __str__(self):
48 49
        return "Pod: {}, replicas {}, status {}".format(
            self.name, self.replicas, self.status)
K
kuizhiqing 已提交
50 51

    def failed_container(self):
52
        cs = []
K
kuizhiqing 已提交
53
        for c in self._containers:
54 55 56
            if c.status == Status.FAILED:
                cs.append(c)
        return cs
K
kuizhiqing 已提交
57 58 59 60 61 62 63 64 65 66 67

    @property
    def name(self):
        return self._name

    @property
    def replicas(self):
        return self._replicas

    @replicas.setter
    def replicas(self, r):
68
        self._replicas = max(r, 1)
K
kuizhiqing 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100

    @property
    def rank(self):
        return self._rank

    @rank.setter
    def rank(self, r):
        self._rank = r

    @property
    def restart(self):
        return self._restart

    @property
    def containers(self):
        return self._containers

    def add_container(self, c):
        c.rank = len(self._containers)
        self._containers.append(c)

    @property
    def init_containers(self):
        return self._init_containers

    def add_init_container(self, c):
        c.rank = len(self._init_containers)
        self._init_containers.append(c)

    @property
    def exit_code(self):
        for c in self._containers:
101 102
            if c.exit_code != 0:
                return c.exit_code
K
kuizhiqing 已提交
103 104 105
        return 0

    def deploy(self):
106
        # init container should stop before run containers
K
kuizhiqing 已提交
107
        for i in self._init_containers:
108 109
            i.start()
            i.wait(self._init_timeout)
K
kuizhiqing 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124

        for c in self._containers:
            c.start()

        self._restart += 1

    def stop(self, sigint=0):
        for c in self._containers:
            force = True if sigint == 9 else False
            c.terminate(force)

    def join(self):
        for c in self._containers:
            c.wait(None)

125
    @property
K
kuizhiqing 已提交
126 127 128 129 130 131 132
    def status(self):
        if self.is_failed():
            return Status.FAILED

        if self.is_completed():
            return Status.COMPLETED

133 134 135
        if self.is_running():
            return Status.RUNNING

K
kuizhiqing 已提交
136 137 138 139 140 141 142 143
        return Status.READY

    def reset(self):
        self._init_containers = []
        self._containers = []

    def is_failed(self):
        for c in self._containers:
144
            if c.status == Status.FAILED:
K
kuizhiqing 已提交
145 146 147 148 149
                return True
        return False

    def is_completed(self):
        for c in self._containers:
150 151 152 153 154 155 156
            if c.status != Status.COMPLETED:
                return False
        return True

    def is_running(self):
        for c in self._containers:
            if c.status != Status.RUNNING:
K
kuizhiqing 已提交
157 158 159 160 161
                return False
        return True

    def logs(self, idx=None):
        if idx is None:
162
            self._containers[0].logs()
K
kuizhiqing 已提交
163 164 165 166 167
        else:
            self._containers[idx].logs()

    def tail(self, idx=None):
        if idx is None:
168
            self._containers[0].tail()
K
kuizhiqing 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
        else:
            self._containers[idx].tail()

    def watch(self,
              all_list=[Status.COMPLETED],
              any_list=[Status.FAILED],
              interval=1,
              timeout=-1):
        '''
        watch return if any container status in any_list
        or all container status in all_list
        '''
        end = time.time() + timeout
        while timeout < 0 or time.time() < end:
            for c in self._containers:
184 185
                if c.status in any_list:
                    return c.status
K
kuizhiqing 已提交
186

187
            s = [c.status for c in self._containers]
K
kuizhiqing 已提交
188 189 190 191
            if len(set(s)) == 1 and s[0] in all_list:
                return s[0]

            time.sleep(interval)