pipeline_server.py 15.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   Copyright (c) 2020 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.
# pylint: disable=doc-string-missing
15 16 17
from concurrent import futures
import grpc
import logging
18
import json
B
barrierye 已提交
19
import socket
B
barrierye 已提交
20
import contextlib
B
barrierye 已提交
21
from contextlib import closing
B
barrierye 已提交
22
import multiprocessing
B
barrierye 已提交
23
import yaml
24

B
barriery 已提交
25
from .proto import pipeline_service_pb2_grpc
B
barriery 已提交
26 27 28
from . import operator
from . import dag
from . import util
29

30
_LOGGER = logging.getLogger(__name__)
31 32


B
barriery 已提交
33
class PipelineServicer(pipeline_service_pb2_grpc.PipelineServiceServicer):
34
    def __init__(self, response_op, dag_conf, worker_idx=-1):
B
barriery 已提交
35
        super(PipelineServicer, self).__init__()
B
barrierye 已提交
36
        # init dag executor
B
barriery 已提交
37
        self._dag_executor = dag.DAGExecutor(response_op, dag_conf, worker_idx)
B
barrierye 已提交
38
        self._dag_executor.start()
B
barriery 已提交
39
        _LOGGER.info("[PipelineServicer] succ init")
40 41

    def inference(self, request, context):
42
        resp = self._dag_executor.call(request)
43 44
        return resp

B
barrierye 已提交
45

B
barrierye 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59
@contextlib.contextmanager
def _reserve_port(port):
    """Find and reserve a port for all subprocesses to use."""
    sock = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
    sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1)
    if sock.getsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT) == 0:
        raise RuntimeError("Failed to set SO_REUSEPORT.")
    sock.bind(('', port))
    try:
        yield sock.getsockname()[1]
    finally:
        sock.close()


60
class PipelineServer(object):
B
barrierye 已提交
61
    def __init__(self):
B
barriery 已提交
62
        self._rpc_port = None
63
        self._worker_num = None
B
barrierye 已提交
64
        self._response_op = None
B
barriery 已提交
65 66
        self._proxy_server = None

B
barriery 已提交
67
    def _grpc_gateway(self, grpc_port, http_port):
B
barriery 已提交
68 69 70 71 72 73
        import os
        from ctypes import cdll
        from . import gateway
        lib_path = os.path.join(
            os.path.dirname(gateway.__file__), "libproxy_server.so")
        proxy_server = cdll.LoadLibrary(lib_path)
B
barriery 已提交
74
        proxy_server.run_proxy_server(grpc_port, http_port)
B
barriery 已提交
75

B
barriery 已提交
76 77
    def _run_grpc_gateway(self, grpc_port, http_port):
        if http_port <= 0:
B
barriery 已提交
78 79
            _LOGGER.info("Ignore grpc_gateway configuration.")
            return
B
barriery 已提交
80
        if not util.AvailablePortGenerator.port_is_available(http_port):
B
barriery 已提交
81
            raise SystemExit("Failed to run grpc-gateway: prot {} "
B
barriery 已提交
82
                             "is already used".format(http_port))
B
barriery 已提交
83 84 85
        if self._proxy_server is not None:
            raise RuntimeError("Proxy server has been started.")
        self._proxy_server = multiprocessing.Process(
B
barriery 已提交
86 87 88
            target=self._grpc_gateway, args=(
                grpc_port,
                http_port, ))
B
barriery 已提交
89 90
        self._proxy_server.daemon = True
        self._proxy_server.start()
91

B
barrierye 已提交
92
    def set_response_op(self, response_op):
B
barriery 已提交
93
        if not isinstance(response_op, operator.ResponseOp):
B
barriery 已提交
94 95
            raise Exception("Failed to set response_op: response_op "
                            "must be ResponseOp type.")
B
barrierye 已提交
96
        if len(response_op.get_input_ops()) != 1:
B
barriery 已提交
97 98
            raise Exception("Failed to set response_op: response_op "
                            "can only have one previous op.")
B
barrierye 已提交
99
        self._response_op = response_op
B
barriery 已提交
100
        self._used_op, _ = dag.DAG.get_use_ops(self._response_op)
B
barrierye 已提交
101

B
barriery 已提交
102 103 104
    def prepare_server(self, yml_file=None, yml_dict=None):
        conf = ServerYamlConfChecker.load_server_yaml_conf(
            yml_file=yml_file, yml_dict=yml_dict)
B
barriery 已提交
105

B
barriery 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
        self._rpc_port = conf.get("rpc_port")
        self._http_port = conf.get("http_port")
        if self._rpc_port is None:
            if self._http_port is None:
                raise SystemExit("Failed to prepare_server: rpc_port or "
                                 "http_port can not be None.")
            else:
                # http mode: generate rpc_port
                if not util.AvailablePortGenerator.port_is_available(
                        self._http_port):
                    raise SystemExit("Failed to prepare_server: http_port({}) "
                                     "is already used".format(self._http_port))
                self._rpc_port = util.GetAvailablePortGenerator().next()
        else:
            if not util.AvailablePortGenerator.port_is_available(
                    self._rpc_port):
                raise SystemExit("Failed to prepare_server: prot {} "
                                 "is already used".format(self._rpc_port))
            if self._http_port is None:
                # rpc mode
                pass
            else:
                # http mode
                if not util.AvailablePortGenerator.port_is_available(
                        self._http_port):
                    raise SystemExit("Failed to prepare_server: http_port({}) "
                                     "is already used".format(self._http_port))

134 135
        self._worker_num = conf["worker_num"]
        self._build_dag_each_worker = conf["build_dag_each_worker"]
B
barriery 已提交
136
        self._init_ops(conf["op"])
B
barriery 已提交
137

B
barrierye 已提交
138
        _LOGGER.info("============= PIPELINE SERVER =============")
139 140 141
        _LOGGER.info("\n{}".format(
            json.dumps(
                conf, indent=4, separators=(',', ':'))))
142
        if self._build_dag_each_worker is True:
B
bug fix  
barrierye 已提交
143 144 145
            _LOGGER.warning(
                "(Make sure that install grpcio whl with --no-binary flag: "
                "pip install grpcio --no-binary grpcio)")
B
barrierye 已提交
146
        _LOGGER.info("-------------------------------------------")
147

B
barriery 已提交
148
        self._conf = conf
B
barriery 已提交
149
        self._start_local_rpc_service()
B
barrierye 已提交
150

B
barriery 已提交
151
    def _init_ops(self, op_conf):
B
barriery 已提交
152 153 154 155 156
        default_conf = {
            "concurrency": 1,
            "timeout": -1,
            "retry": 1,
            "batch_size": 1,
B
barriery 已提交
157
            "auto_batching_timeout": -1,
B
barriery 已提交
158
            "local_service_conf": {
B
barriery 已提交
159
                "workdir": "",
B
barriery 已提交
160 161 162 163 164 165 166
                "thread_num": 2,
                "devices": "",
                "mem_optim": True,
                "ir_optim": False,
            },
        }
        for op in self._used_op:
B
barriery 已提交
167 168
            if not isinstance(op, operator.RequestOp) and not isinstance(
                    op, operator.ResponseOp):
B
barriery 已提交
169
                conf = op_conf.get(op.name, default_conf)
B
barriery 已提交
170
                op.init_from_dict(conf)
B
barriery 已提交
171 172

    def _start_local_rpc_service(self):
173
        # only brpc now
B
barriery 已提交
174
        if self._conf["dag"]["client_type"] != "brpc":
175
            raise ValueError("Local service version must be brpc type now.")
B
barriery 已提交
176 177
        for op in self._used_op:
            if not isinstance(op, operator.RequestOp):
B
barriery 已提交
178
                op.launch_local_rpc_service()
179

180
    def run_server(self):
181
        if self._build_dag_each_worker:
B
barriery 已提交
182
            with _reserve_port(self._rpc_port) as port:
B
barrierye 已提交
183 184 185 186 187 188
                bind_address = 'localhost:{}'.format(port)
                workers = []
                for i in range(self._worker_num):
                    show_info = (i == 0)
                    worker = multiprocessing.Process(
                        target=self._run_server_func,
189
                        args=(bind_address, self._response_op, self._conf, i))
B
barrierye 已提交
190 191
                    worker.start()
                    workers.append(worker)
B
barriery 已提交
192
                self._run_grpc_gateway(
B
barriery 已提交
193 194
                    grpc_port=self._rpc_port,
                    http_port=self._http_port)  # start grpc_gateway
B
barrierye 已提交
195 196 197 198
                for worker in workers:
                    worker.join()
        else:
            server = grpc.server(
B
bug fix  
barrierye 已提交
199 200
                futures.ThreadPoolExecutor(max_workers=self._worker_num),
                options=[('grpc.max_send_message_length', 256 * 1024 * 1024),
B
barriery 已提交
201 202
                         ('grpc.max_receive_message_length', 256 * 1024 * 1024)
                         ])
B
barriery 已提交
203
            pipeline_service_pb2_grpc.add_PipelineServiceServicer_to_server(
B
barriery 已提交
204
                PipelineServicer(self._response_op, self._conf), server)
B
barriery 已提交
205
            server.add_insecure_port('[::]:{}'.format(self._rpc_port))
B
barrierye 已提交
206
            server.start()
B
barriery 已提交
207
            self._run_grpc_gateway(
B
barriery 已提交
208 209
                grpc_port=self._rpc_port,
                http_port=self._http_port)  # start grpc_gateway
B
barrierye 已提交
210 211
            server.wait_for_termination()

212
    def _run_server_func(self, bind_address, response_op, dag_conf, worker_idx):
B
bug fix  
barrierye 已提交
213
        options = [('grpc.so_reuseport', 1),
B
barriery 已提交
214 215
                   ('grpc.max_send_message_length', 256 * 1024 * 1024),
                   ('grpc.max_send_message_length', 256 * 1024 * 1024)]
216
        server = grpc.server(
B
barrierye 已提交
217
            futures.ThreadPoolExecutor(
B
barrierye 已提交
218
                max_workers=1, ), options=options)
B
barriery 已提交
219
        pipeline_service_pb2_grpc.add_PipelineServiceServicer_to_server(
220
            PipelineServicer(response_op, dag_conf, worker_idx), server)
B
barrierye 已提交
221
        server.add_insecure_port(bind_address)
222 223
        server.start()
        server.wait_for_termination()
224 225 226 227 228 229 230


class ServerYamlConfChecker(object):
    def __init__(self):
        pass

    @staticmethod
B
barriery 已提交
231 232 233 234 235 236 237 238 239 240 241 242
    def load_server_yaml_conf(yml_file=None, yml_dict=None):
        if yml_file is not None and yml_dict is not None:
            raise SystemExit("Failed to prepare_server: only one of yml_file"
                             " or yml_dict can be selected as the parameter.")
        if yml_file is not None:
            with open(yml_file) as f:
                conf = yaml.load(f.read())
        elif yml_dict is not None:
            conf = yml_dict
        else:
            raise SystemExit("Failed to prepare_server: yml_file or yml_dict"
                             " can not be None.")
243 244
        ServerYamlConfChecker.check_server_conf(conf)
        ServerYamlConfChecker.check_dag_conf(conf["dag"])
B
barriery 已提交
245
        ServerYamlConfChecker.check_tracer_conf(conf["dag"]["tracer"])
B
barriery 已提交
246 247 248 249
        for op_name in conf["op"]:
            ServerYamlConfChecker.check_op_conf(conf["op"][op_name])
            ServerYamlConfChecker.check_local_service_conf(conf["op"][op_name][
                "local_service_conf"])
250 251
        return conf

B
barriery 已提交
252 253 254 255 256 257
    @staticmethod
    def check_conf(conf, default_conf, conf_type, conf_qualification):
        ServerYamlConfChecker.fill_with_default_conf(conf, default_conf)
        ServerYamlConfChecker.check_conf_type(conf, conf_type)
        ServerYamlConfChecker.check_conf_qualification(conf, conf_qualification)

258 259 260
    @staticmethod
    def check_server_conf(conf):
        default_conf = {
B
barriery 已提交
261
            # "rpc_port": 9292,
262 263
            "worker_num": 1,
            "build_dag_each_worker": False,
B
barriery 已提交
264
            #"http_port": 0,
265
            "dag": {},
B
barriery 已提交
266
            "op": {},
267 268 269
        }

        conf_type = {
B
barriery 已提交
270 271
            "rpc_port": int,
            "http_port": int,
272 273
            "worker_num": int,
            "build_dag_each_worker": bool,
B
barriery 已提交
274
            "grpc_gateway_port": int,
275 276 277
        }

        conf_qualification = {
B
barriery 已提交
278 279
            "rpc_port": [(">=", 1024), ("<=", 65535)],
            "http_port": [(">=", 1024), ("<=", 65535)],
280 281 282
            "worker_num": (">=", 1),
        }

B
barriery 已提交
283 284 285
        ServerYamlConfChecker.check_conf(conf, default_conf, conf_type,
                                         conf_qualification)

B
barriery 已提交
286 287 288
    @staticmethod
    def check_local_service_conf(conf):
        default_conf = {
B
barriery 已提交
289
            "workdir": "",
B
barriery 已提交
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
            "thread_num": 2,
            "devices": "",
            "mem_optim": True,
            "ir_optim": False,
        }
        conf_type = {
            "model_config": str,
            "workdir": str,
            "thread_num": int,
            "devices": str,
            "mem_optim": bool,
            "ir_optim": bool,
        }
        conf_qualification = {"thread_num": (">=", 1), }
        ServerYamlConfChecker.check_conf(conf, default_conf, conf_type,
                                         conf_qualification)

    @staticmethod
    def check_op_conf(conf):
        default_conf = {
            "concurrency": 1,
            "timeout": -1,
            "retry": 1,
            "batch_size": 1,
B
barriery 已提交
314
            "auto_batching_timeout": -1,
B
barriery 已提交
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
            "local_service_conf": {},
        }
        conf_type = {
            "server_endpoints": list,
            "fetch_list": list,
            "client_config": str,
            "concurrency": int,
            "timeout": int,
            "retry": int,
            "batch_size": int,
            "auto_batching_timeout": int,
        }
        conf_qualification = {
            "concurrency": (">=", 1),
            "retry": (">=", 1),
            "batch_size": (">=", 1),
        }
B
barriery 已提交
332 333
        ServerYamlConfChecker.check_conf(conf, default_conf, conf_type,
                                         conf_qualification)
B
barriery 已提交
334

B
barriery 已提交
335 336
    @staticmethod
    def check_tracer_conf(conf):
B
bug fix  
barrierye 已提交
337
        default_conf = {"interval_s": -1, }
B
barriery 已提交
338 339 340 341 342 343 344

        conf_type = {"interval_s": int, }

        conf_qualification = {}

        ServerYamlConfChecker.check_conf(conf, default_conf, conf_type,
                                         conf_qualification)
345 346 347 348 349 350 351 352

    @staticmethod
    def check_dag_conf(conf):
        default_conf = {
            "retry": 1,
            "client_type": "brpc",
            "use_profile": False,
            "channel_size": 0,
B
barriery 已提交
353 354
            "is_thread_op": True,
            "tracer": {},
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
        }

        conf_type = {
            "retry": int,
            "client_type": str,
            "use_profile": bool,
            "channel_size": int,
            "is_thread_op": bool,
        }

        conf_qualification = {
            "retry": (">=", 1),
            "client_type": ("in", ["brpc", "grpc"]),
            "channel_size": (">=", 0),
        }

B
barriery 已提交
371 372
        ServerYamlConfChecker.check_conf(conf, default_conf, conf_type,
                                         conf_qualification)
373 374 375 376 377 378 379 380 381 382 383 384

    @staticmethod
    def fill_with_default_conf(conf, default_conf):
        for key, val in default_conf.items():
            if conf.get(key) is None:
                _LOGGER.warning("[CONF] {} not set, use default: {}"
                                .format(key, val))
                conf[key] = val

    @staticmethod
    def check_conf_type(conf, conf_type):
        for key, val in conf_type.items():
B
barriery 已提交
385 386
            if key not in conf:
                continue
387 388 389 390 391 392 393
            if not isinstance(conf[key], val):
                raise SystemExit("[CONF] {} must be {} type, but get {}."
                                 .format(key, val, type(conf[key])))

    @staticmethod
    def check_conf_qualification(conf, conf_qualification):
        for key, qualification in conf_qualification.items():
B
barriery 已提交
394 395
            if key not in conf:
                continue
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
            if not isinstance(qualification, list):
                qualification = [qualification]
            if not ServerYamlConfChecker.qualification_check(conf[key],
                                                             qualification):
                raise SystemExit("[CONF] {} must be {}, but get {}."
                                 .format(key, ", ".join([
                                     "{} {}"
                                     .format(q[0], q[1]) for q in qualification
                                 ]), conf[key]))

    @staticmethod
    def qualification_check(value, qualifications):
        if not isinstance(qualifications, list):
            qualifications = [qualifications]
        ok = True
        for q in qualifications:
            operator, limit = q
            if operator == "<":
                ok = value < limit
            elif operator == "==":
                ok = value == limit
            elif operator == ">":
                ok = value > limit
            elif operator == "<=":
                ok = value <= limit
            elif operator == ">=":
                ok = value >= limit
            elif operator == "in":
                ok = value in limit
            else:
                raise SystemExit("unknow operator: {}".format(operator))
            if ok == False:
                break
        return ok