pipeline_server.py 20.0 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
import io
25
import time
26
import os
27
from .error_catch import ErrorCatch, CustomException, CustomExceptionCode, ParamChecker, ParamVerify
B
barriery 已提交
28
from .proto import pipeline_service_pb2_grpc, pipeline_service_pb2
B
barriery 已提交
29 30 31
from . import operator
from . import dag
from . import util
B
barriery 已提交
32
from . import channel
33 34
from paddle_serving_server.env import CONF_HOME
from paddle_serving_server.util import dump_pid_file
35

36
_LOGGER = logging.getLogger(__name__)
37 38


B
barriery 已提交
39
class PipelineServicer(pipeline_service_pb2_grpc.PipelineServiceServicer):
40 41 42
    """
    Pipeline Servicer entrance.
    """
B
barriery 已提交
43 44
    def __init__(self, name, response_op, dag_conf, worker_idx=-1):

45 46 47 48 49 50 51 52 53 54 55
        @ErrorCatch
        @ParamChecker
        def init_helper(self, name, response_op, 
          dag_conf: dict,
          worker_idx=-1):
           self._name = name
           self._dag_executor = dag.DAGExecutor(response_op, dag_conf, worker_idx)
           self._dag_executor.start()
            
        super(PipelineServicer, self).__init__()
        init_res = init_helper(self, name, response_op, dag_conf, worker_idx)
F
felixhjh 已提交
56 57
        if init_res[1].err_no != CustomExceptionCode.OK.value :
            raise CustomException(CustomExceptionCode.INIT_ERROR, "pipeline server init error")
B
barriery 已提交
58
        _LOGGER.info("[PipelineServicer] succ init")
59 60

    def inference(self, request, context):
61 62 63
        _LOGGER.info(
            "(log_id={}) inference request name:{} self.name:{} time:{}".format(
                request.logid, request.name, self._name, time.time()))
B
barriery 已提交
64
        if request.name != "" and request.name != self._name:
65 66 67
            _LOGGER.error("(log_id={}) name dismatch error. request.name:{},"
                          "server.name={}".format(request.logid, request.name,
                                                  self._name))
B
barriery 已提交
68
            resp = pipeline_service_pb2.Response()
T
TeslaZhao 已提交
69 70
            resp.err_no = channel.ChannelDataErrcode.NO_SERVICE.value
            resp.err_msg = "Failed to inference: Service name error."
B
barriery 已提交
71
            return resp
72
        resp = self._dag_executor.call(request)
73 74
        return resp

B
barrierye 已提交
75

B
barrierye 已提交
76 77
@contextlib.contextmanager
def _reserve_port(port):
78 79 80
    """
    Find and reserve a port for all subprocesses to use.
    """
B
barrierye 已提交
81 82 83 84 85 86 87 88 89 90
    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()

91
class PipelineServer(object):
92 93 94 95
    """
    Pipeline Server : grpc gateway + grpc server.
    """

B
barriery 已提交
96 97
    def __init__(self, name=None):
        self._name = name  # for grpc-gateway path
B
barriery 已提交
98
        self._rpc_port = None
99
        self._worker_num = None
B
barrierye 已提交
100
        self._response_op = None
B
barriery 已提交
101 102
        self._proxy_server = None

B
barriery 已提交
103
    def _grpc_gateway(self, grpc_port, http_port):
104 105 106 107 108 109 110 111 112 113
        """
        Running a gateway server, linking libproxy_server.so

        Args:
            grpc_port: GRPC port
            http_port: HTTP port

        Returns:
            None
        """
B
barriery 已提交
114 115 116 117 118 119
        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 已提交
120
        proxy_server.run_proxy_server(grpc_port, http_port)
B
barriery 已提交
121

B
barriery 已提交
122
    def _run_grpc_gateway(self, grpc_port, http_port):
123 124 125 126 127 128 129 130 131 132 133
        """
        Starting the GRPC gateway in a new process. Exposing one 
        available HTTP port outside, and reflecting the data to RPC port.

        Args:
            grpc_port: GRPC port
            http_port: HTTP port

        Returns:
            None
        """
B
barriery 已提交
134
        if http_port <= 0:
B
barriery 已提交
135 136
            _LOGGER.info("Ignore grpc_gateway configuration.")
            return
B
barriery 已提交
137
        if not util.AvailablePortGenerator.port_is_available(http_port):
B
barriery 已提交
138
            raise SystemExit("Failed to run grpc-gateway: prot {} "
B
barriery 已提交
139
                             "is already used".format(http_port))
B
barriery 已提交
140 141 142
        if self._proxy_server is not None:
            raise RuntimeError("Proxy server has been started.")
        self._proxy_server = multiprocessing.Process(
B
barriery 已提交
143 144 145
            target=self._grpc_gateway, args=(
                grpc_port,
                http_port, ))
B
barriery 已提交
146 147
        self._proxy_server.daemon = True
        self._proxy_server.start()
148

B
barrierye 已提交
149
    def set_response_op(self, response_op):
150 151 152 153 154 155 156 157 158
        """
        Set the response OP.

        Args:
            response_op: ResponseOp or its subclass object

        Returns:
            None
        """
B
barriery 已提交
159
        if not isinstance(response_op, operator.ResponseOp):
B
barriery 已提交
160 161
            raise Exception("Failed to set response_op: response_op "
                            "must be ResponseOp type.")
B
barrierye 已提交
162
        if len(response_op.get_input_ops()) != 1:
B
barriery 已提交
163 164
            raise Exception("Failed to set response_op: response_op "
                            "can only have one previous op.")
B
barrierye 已提交
165
        self._response_op = response_op
B
barriery 已提交
166
        self._used_op, _ = dag.DAG.get_use_ops(self._response_op)
B
barrierye 已提交
167

B
barriery 已提交
168
    def prepare_server(self, yml_file=None, yml_dict=None):
169 170 171 172 173 174 175 176 177 178 179
        """
        Reading configures from the yml file(config.yaml), and launching
        local services.

        Args:
            yml_file: Reading configures from yaml files
            yml_dict: Reading configures from yaml dict.
   
        Returns:
            None 
        """
B
barriery 已提交
180 181
        conf = ServerYamlConfChecker.load_server_yaml_conf(
            yml_file=yml_file, yml_dict=yml_dict)
B
barriery 已提交
182

B
barriery 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
        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))
210 211 212 213 214 215 216 217
        # write the port info into ProcessInfo.json
        portList = []
        if self._http_port is not None:
            portList.append(self._rpc_port)
        if self._rpc_port is not None:
            portList.append(self._http_port)
        if len(portList):
            dump_pid_file(portList, "pipline")
218 219
        self._worker_num = conf["worker_num"]
        self._build_dag_each_worker = conf["build_dag_each_worker"]
B
barriery 已提交
220
        self._init_ops(conf["op"])
B
barriery 已提交
221

B
barrierye 已提交
222
        _LOGGER.info("============= PIPELINE SERVER =============")
223 224 225
        _LOGGER.info("\n{}".format(
            json.dumps(
                conf, indent=4, separators=(',', ':'))))
226
        if self._build_dag_each_worker is True:
B
bug fix  
barrierye 已提交
227 228 229
            _LOGGER.warning(
                "(Make sure that install grpcio whl with --no-binary flag: "
                "pip install grpcio --no-binary grpcio)")
B
barrierye 已提交
230
        _LOGGER.info("-------------------------------------------")
231

B
barriery 已提交
232
        self._conf = conf
B
barriery 已提交
233
        self._start_local_rpc_service()
B
barrierye 已提交
234

B
barriery 已提交
235
    def _init_ops(self, op_conf):
236 237 238 239 240 241 242 243 244
        """
        Initializing all OPs from dicetory.

        Args:
            op_conf: the op configures in yaml dict.

        Returns:
            None.
        """
B
barriery 已提交
245 246 247 248 249
        default_conf = {
            "concurrency": 1,
            "timeout": -1,
            "retry": 1,
            "batch_size": 1,
B
barriery 已提交
250
            "auto_batching_timeout": -1,
B
barriery 已提交
251
            "local_service_conf": {
B
barriery 已提交
252
                "workdir": "",
B
barriery 已提交
253
                "thread_num": 2,
254
                "device_type": -1,
B
barriery 已提交
255 256 257
                "devices": "",
                "mem_optim": True,
                "ir_optim": False,
Z
zhangjun 已提交
258 259
                "precision": "fp32",
                "use_calib": False,
T
TeslaZhao 已提交
260 261
                "use_mkldnn": False,
                "mkldnn_cache_capacity": 0,
B
barriery 已提交
262 263 264
            },
        }
        for op in self._used_op:
B
barriery 已提交
265 266
            if not isinstance(op, operator.RequestOp) and not isinstance(
                    op, operator.ResponseOp):
B
barriery 已提交
267
                conf = op_conf.get(op.name, default_conf)
B
barriery 已提交
268
                op.init_from_dict(conf)
B
barriery 已提交
269 270

    def _start_local_rpc_service(self):
271
        # only brpc now
B
barriery 已提交
272
        if self._conf["dag"]["client_type"] != "brpc":
B
barrierye 已提交
273
            _LOGGER.warning("Local service version must be brpc type now.")
B
barriery 已提交
274 275
        for op in self._used_op:
            if not isinstance(op, operator.RequestOp):
B
barriery 已提交
276
                op.launch_local_rpc_service()
277

278
    def run_server(self):
279 280 281 282 283 284 285 286 287 288 289
        """
        If _build_dag_each_worker is True, Starting _worker_num processes and 
        running one GRPC server in each process. Otherwise, Staring one GRPC
        server.

        Args:
            None

        Returns:
            None
        """
290
        if self._build_dag_each_worker:
B
barriery 已提交
291
            with _reserve_port(self._rpc_port) as port:
B
barrierye 已提交
292 293 294 295 296
                bind_address = 'localhost:{}'.format(port)
                workers = []
                for i in range(self._worker_num):
                    worker = multiprocessing.Process(
                        target=self._run_server_func,
297
                        args=(bind_address, self._response_op, self._conf, i))
B
barrierye 已提交
298 299
                    worker.start()
                    workers.append(worker)
B
barriery 已提交
300
                self._run_grpc_gateway(
B
barriery 已提交
301 302
                    grpc_port=self._rpc_port,
                    http_port=self._http_port)  # start grpc_gateway
B
barrierye 已提交
303 304 305 306
                for worker in workers:
                    worker.join()
        else:
            server = grpc.server(
B
bug fix  
barrierye 已提交
307 308
                futures.ThreadPoolExecutor(max_workers=self._worker_num),
                options=[('grpc.max_send_message_length', 256 * 1024 * 1024),
B
barriery 已提交
309 310
                         ('grpc.max_receive_message_length', 256 * 1024 * 1024)
                         ])
B
barriery 已提交
311
            pipeline_service_pb2_grpc.add_PipelineServiceServicer_to_server(
B
barriery 已提交
312 313
                PipelineServicer(self._name, self._response_op, self._conf),
                server)
B
barriery 已提交
314
            server.add_insecure_port('[::]:{}'.format(self._rpc_port))
B
barrierye 已提交
315
            server.start()
B
barriery 已提交
316
            self._run_grpc_gateway(
B
barriery 已提交
317 318
                grpc_port=self._rpc_port,
                http_port=self._http_port)  # start grpc_gateway
B
barrierye 已提交
319 320
            server.wait_for_termination()

321
    def _run_server_func(self, bind_address, response_op, dag_conf, worker_idx):
322 323 324 325 326 327 328 329 330
        """
        Running one GRPC server with PipelineServicer.

        Args:
            bind_address: binding IP/Port
            response_op: ResponseOp or its subclass object
            dag_conf: DAG config
            worker_idx: Process index.
        """
B
bug fix  
barrierye 已提交
331
        options = [('grpc.so_reuseport', 1),
B
barriery 已提交
332 333
                   ('grpc.max_send_message_length', 256 * 1024 * 1024),
                   ('grpc.max_send_message_length', 256 * 1024 * 1024)]
334
        server = grpc.server(
B
barrierye 已提交
335
            futures.ThreadPoolExecutor(
B
barrierye 已提交
336
                max_workers=1, ), options=options)
B
barriery 已提交
337
        pipeline_service_pb2_grpc.add_PipelineServiceServicer_to_server(
B
barriery 已提交
338 339
            PipelineServicer(self._name, response_op, dag_conf, worker_idx),
            server)
B
barrierye 已提交
340
        server.add_insecure_port(bind_address)
341 342
        server.start()
        server.wait_for_termination()
343 344 345


class ServerYamlConfChecker(object):
346 347 348 349
    """
    Checking validities of server yaml files.
    """

350 351 352 353
    def __init__(self):
        pass

    @staticmethod
B
barriery 已提交
354 355 356 357 358
    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:
359
            with io.open(yml_file, encoding='utf-8') as f:
360
                conf = yaml.load(f.read(), yaml.FullLoader)
B
barriery 已提交
361 362 363 364 365
        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.")
366 367
        ServerYamlConfChecker.check_server_conf(conf)
        ServerYamlConfChecker.check_dag_conf(conf["dag"])
B
barriery 已提交
368
        ServerYamlConfChecker.check_tracer_conf(conf["dag"]["tracer"])
B
barriery 已提交
369 370 371 372
        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"])
373 374
        return conf

B
barriery 已提交
375 376 377 378 379 380
    @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)

381 382 383
    @staticmethod
    def check_server_conf(conf):
        default_conf = {
B
barriery 已提交
384
            # "rpc_port": 9292,
385 386
            "worker_num": 1,
            "build_dag_each_worker": False,
B
barriery 已提交
387
            #"http_port": 0,
388
            "dag": {},
B
barriery 已提交
389
            "op": {},
390 391 392
        }

        conf_type = {
B
barriery 已提交
393 394
            "rpc_port": int,
            "http_port": int,
395 396
            "worker_num": int,
            "build_dag_each_worker": bool,
B
barriery 已提交
397
            "grpc_gateway_port": int,
398 399 400
        }

        conf_qualification = {
B
barriery 已提交
401 402
            "rpc_port": [(">=", 1024), ("<=", 65535)],
            "http_port": [(">=", 1024), ("<=", 65535)],
403 404 405
            "worker_num": (">=", 1),
        }

B
barriery 已提交
406 407 408
        ServerYamlConfChecker.check_conf(conf, default_conf, conf_type,
                                         conf_qualification)

B
barriery 已提交
409 410 411
    @staticmethod
    def check_local_service_conf(conf):
        default_conf = {
B
barriery 已提交
412
            "workdir": "",
B
barriery 已提交
413
            "thread_num": 2,
414
            "device_type": -1,
B
barriery 已提交
415 416 417
            "devices": "",
            "mem_optim": True,
            "ir_optim": False,
Z
zhangjun 已提交
418 419
            "precision": "fp32",
            "use_calib": False,
T
TeslaZhao 已提交
420 421
            "use_mkldnn": False,
            "mkldnn_cache_capacity": 0,
B
barriery 已提交
422 423 424 425 426
        }
        conf_type = {
            "model_config": str,
            "workdir": str,
            "thread_num": int,
427
            "device_type": int,
B
barriery 已提交
428 429 430
            "devices": str,
            "mem_optim": bool,
            "ir_optim": bool,
Z
zhangjun 已提交
431 432
            "precision": str,
            "use_calib": bool,
T
TeslaZhao 已提交
433 434 435 436
            "use_mkldnn": bool,
            "mkldnn_cache_capacity": int,
            "mkldnn_op_list": list,
            "mkldnn_bf16_op_list": list,
B
barriery 已提交
437 438 439 440 441 442 443 444 445 446 447 448
        }
        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 已提交
449
            "auto_batching_timeout": -1,
B
barriery 已提交
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
            "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 已提交
467 468
        ServerYamlConfChecker.check_conf(conf, default_conf, conf_type,
                                         conf_qualification)
B
barriery 已提交
469

B
barriery 已提交
470 471
    @staticmethod
    def check_tracer_conf(conf):
B
bug fix  
barrierye 已提交
472
        default_conf = {"interval_s": -1, }
B
barriery 已提交
473 474 475 476 477 478 479

        conf_type = {"interval_s": int, }

        conf_qualification = {}

        ServerYamlConfChecker.check_conf(conf, default_conf, conf_type,
                                         conf_qualification)
480 481 482 483 484 485 486 487

    @staticmethod
    def check_dag_conf(conf):
        default_conf = {
            "retry": 1,
            "client_type": "brpc",
            "use_profile": False,
            "channel_size": 0,
B
barriery 已提交
488 489
            "is_thread_op": True,
            "tracer": {},
490
            "channel_recv_frist_arrive": False,
491 492 493 494 495 496 497 498
        }

        conf_type = {
            "retry": int,
            "client_type": str,
            "use_profile": bool,
            "channel_size": int,
            "is_thread_op": bool,
499
            "channel_recv_frist_arrive": bool,
500 501 502 503 504 505 506 507
        }

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

B
barriery 已提交
508 509
        ServerYamlConfChecker.check_conf(conf, default_conf, conf_type,
                                         conf_qualification)
510 511 512 513 514 515 516 517 518 519 520 521

    @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 已提交
522 523
            if key not in conf:
                continue
524 525 526 527 528 529 530
            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 已提交
531 532
            if key not in conf:
                continue
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
            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