Source code for jina.serve.executors.decorators

"""Decorators and wrappers designed for wrapping :class:`BaseExecutor` functions. """
import functools
import inspect
import os
from contextlib import nullcontext
from pathlib import Path
from typing import TYPE_CHECKING, Callable, Dict, List, Optional, Sequence, Union

from jina import __cache_path__
from jina.helper import convert_tuple_to_list, iscoroutinefunction
from jina.importer import ImportExtensions
from jina.serve.executors.metas import get_default_metas

if TYPE_CHECKING:
    from jina import DocumentArray


@functools.lru_cache()
def _get_locks_root() -> Path:
    locks_root = Path(os.path.join(__cache_path__, 'locks'))

    if not locks_root.exists():
        locks_root.mkdir(parents=True, exist_ok=True)

    return locks_root


[docs]def wrap_func(cls, func_lst, wrapper): """Wrapping a class method only once, inherited but not overridden method will not be wrapped again :param cls: class :param func_lst: function list to wrap :param wrapper: the wrapper """ for f_name in func_lst: if hasattr(cls, f_name) and all( getattr(cls, f_name) != getattr(i, f_name, None) for i in cls.mro()[1:] ): setattr(cls, f_name, wrapper(getattr(cls, f_name)))
[docs]def store_init_kwargs(func: Callable) -> Callable: """Mark the args and kwargs of :func:`__init__` later to be stored via :func:`save_config` in YAML :param func: the function to decorate :return: the wrapped function """ @functools.wraps(func) def arg_wrapper(self, *args, **kwargs): if func.__name__ != '__init__': raise TypeError( 'this decorator should only be used on __init__ method of an executor' ) taboo = {'self', 'args', 'kwargs', 'metas', 'requests', 'runtime_args'} _defaults = get_default_metas() taboo.update(_defaults.keys()) all_pars = inspect.signature(func).parameters tmp = {k: v.default for k, v in all_pars.items() if k not in taboo} tmp_list = [k for k in all_pars.keys() if k not in taboo] # set args by aligning tmp_list with arg values for k, v in zip(tmp_list, args): tmp[k] = v # set kwargs for k, v in kwargs.items(): if k in tmp: tmp[k] = v if hasattr(self, '_init_kwargs_dict'): self._init_kwargs_dict.update(tmp) else: self._init_kwargs_dict = tmp convert_tuple_to_list(self._init_kwargs_dict) f = func(self, *args, **kwargs) return f return arg_wrapper
[docs]def avoid_concurrent_lock_cls(cls): """Wraps a function to lock a filelock for concurrent access with the name of the class to which it applies, to avoid deadlocks :param cls: the class to which is applied, only when the class corresponds to the instance type, this filelock will apply :return: the wrapped function """ def avoid_concurrent_lock_wrapper(func: Callable) -> Callable: """Wrap the function around a File Lock to make sure that the function is run by a single replica in the same machine :param func: the function to decorate :return: the wrapped function """ @functools.wraps(func) def arg_wrapper(self, *args, **kwargs): if func.__name__ != '__init__': raise TypeError( 'this decorator should only be used on __init__ method of an executor' ) if self.__class__ == cls: file_lock = nullcontext() with ImportExtensions( required=False, help_text=f'FileLock is needed to guarantee non-concurrent initialization of replicas in the same ' f'machine.', ): import filelock locks_root = _get_locks_root() lock_file = locks_root.joinpath(f'{self.__class__.__name__}.lock') file_lock = filelock.FileLock(lock_file, timeout=-1) with file_lock: f = func(self, *args, **kwargs) return f else: return func(self, *args, **kwargs) return arg_wrapper return avoid_concurrent_lock_wrapper
[docs]def requests( func: Callable[ [ 'DocumentArray', Dict, 'DocumentArray', List['DocumentArray'], List['DocumentArray'], ], Optional[Union['DocumentArray', Dict]], ] = None, *, on: Optional[Union[str, Sequence[str]]] = None, ): """ `@requests` defines the endpoints of an Executor. It has a keyword `on=` to define the endpoint. A class method decorated with plain `@requests` (without `on=`) is the default handler for all endpoints. That means, it is the fallback handler for endpoints that are not found. EXAMPLE USAGE .. code-block:: python from jina import Executor, requests, Flow from docarray import Document # define Executor with custom `@requests` endpoints class MyExecutor(Executor): @requests(on='/index') def index(self, docs, **kwargs): print(docs) # index docs here @requests(on=['/search', '/query']) def search(self, docs, **kwargs): print(docs) # perform search here @requests # default/fallback endpoint def foo(self, docs, **kwargs): print(docs) # process docs here f = Flow().add(uses=MyExecutor) # add your Executor to a Flow with f: f.post( on='/index', inputs=Document(text='I am here!') ) # send doc to `index` method f.post( on='/search', inputs=Document(text='Who is there?') ) # send doc to `search` method f.post( on='/query', inputs=Document(text='Who is there?') ) # send doc to `search` method f.post(on='/bar', inputs=Document(text='Who is there?')) # send doc to `foo` method :param func: the method to decorate :param on: the endpoint string, by convention starts with `/` :return: decorated function """ from jina import __args_executor_func__, __default_endpoint__ class FunctionMapper: def __init__(self, fn): arg_spec = inspect.getfullargspec(fn) if not arg_spec.varkw and not __args_executor_func__.issubset( arg_spec.args ): raise TypeError( f'{fn} accepts only {arg_spec.args} which is fewer than expected, ' f'please add `**kwargs` to the function signature.' ) if iscoroutinefunction(fn): @functools.wraps(fn) async def arg_wrapper( executor_instance, *args, **kwargs ): # we need to get the summary from the executor, so we need to access the self return await fn(executor_instance, *args, **kwargs) self.fn = arg_wrapper else: @functools.wraps(fn) def arg_wrapper( executor_instance, *args, **kwargs ): # we need to get the summary from the executor, so we need to access the self return fn(executor_instance, *args, **kwargs) self.fn = arg_wrapper def __set_name__(self, owner, name): self.fn.class_name = owner.__name__ if not hasattr(owner, 'requests'): owner.requests = {} if isinstance(on, (list, tuple)): for o in on: owner.requests[o] = self.fn else: owner.requests[on or __default_endpoint__] = self.fn setattr(owner, name, self.fn) if func: return FunctionMapper(func) else: return FunctionMapper
[docs]def monitor( *, name: Optional[str] = None, documentation: Optional[str] = None, ): """ Decorator and context manager that allows monitoring of an Executor. You can access these metrics by enabling monitoring on your Executor. It will track the time spent calling the function and the number of times it has been called. Under the hood it will create a prometheus Summary : https://prometheus.io/docs/practices/histograms/. EXAMPLE USAGE As decorator .. code-block:: python from jina import Executor, monitor class MyExecutor(Executor): @requests # `@requests` are monitored automatically def foo(self, docs, *args, **kwargs): ... self.my_method() ... # custom metric for `my_method` @monitor(name='metric_name', documentation='useful information goes here') def my_method(self): ... As context manager .. code-block:: python from jina import Executor, requests class MyExecutor(Executor): @requests # `@requests` are monitored automatically def foo(self, docs, *args, **kwargs): ... # custom metric for code block with self.monitor('metric_name', 'useful information goes here'): docs = process(docs) To enable the defined :meth:`monitor` blocks, enable monitoring on the Flow level .. code-block:: python from jina import Flow f = Flow(monitoring=True, port_monitoring=9090).add( uses=MyExecutor, port_monitoring=9091 ) with f: ... :warning: Don't use this decorator in combination with the @request decorator. @request's are already monitored. :param name: the name of the metrics, by default it is based on the name of the method it decorates :param documentation: the description of the metrics, by default it is based on the name of the method it decorates :return: decorator which takes as an input a single callable """ def _decorator(func: Callable): name_ = name if name else f'{func.__name__}_seconds' documentation_ = ( documentation if documentation else f'Time spent calling method {func.__name__}' ) @functools.wraps(func) def _f(self, *args, **kwargs): with self.monitor(name_, documentation_): return func(self, *args, **kwargs) return _f return _decorator