Source code for cli.api

from typing import TYPE_CHECKING


if TYPE_CHECKING:
    from argparse import Namespace


[docs]def deployment(args: 'Namespace'): """ Start a Deployment :param args: arguments coming from the CLI. """ from jina.orchestrate.deployments import Deployment try: with Deployment(args) as d: d.join() except KeyboardInterrupt: pass
[docs]def pod(args: 'Namespace'): """ Start a Pod :param args: arguments coming from the CLI. """ from jina.orchestrate.pods.factory import PodFactory try: with PodFactory.build_pod(args) as p: p.join() except KeyboardInterrupt: pass
[docs]def executor_native(args: 'Namespace'): """ Starts an Executor in a WorkerRuntime :param args: arguments coming from the CLI. """ if args.runtime_cls == 'WorkerRuntime': from jina.serve.runtimes.worker import WorkerRuntime runtime_cls = WorkerRuntime elif args.runtime_cls == 'HeadRuntime': from jina.serve.runtimes.head import HeadRuntime runtime_cls = HeadRuntime else: raise RuntimeError( f' runtime_cls {args.runtime_cls} is not supported with `--native` argument. `WorkerRuntime` is supported' ) with runtime_cls(args) as rt: name = ( rt._data_request_handler._executor.metas.name if hasattr(rt, '_data_request_handler') else rt.name ) rt.logger.success(f' Executor {name} started') rt.run_forever()
[docs]def executor(args: 'Namespace'): """ Starts an Executor in any Runtime :param args: arguments coming from the CLI. :returns: return the same as `pod` or `worker_runtime` """ if args.native: return executor_native(args) else: return pod(args)
[docs]def worker_runtime(args: 'Namespace'): """ Starts a WorkerRuntime :param args: arguments coming from the CLI. """ from jina.serve.runtimes.worker import WorkerRuntime with WorkerRuntime(args) as runtime: runtime.logger.success( f' Executor {runtime._data_request_handler._executor.metas.name} started' ) runtime.run_forever()
[docs]def gateway(args: 'Namespace'): """ Start a Gateway Deployment :param args: arguments coming from the CLI. """ from jina.enums import GatewayProtocolType from jina.serve.runtimes import get_runtime gateway_runtime_dict = { GatewayProtocolType.GRPC: 'GRPCGatewayRuntime', GatewayProtocolType.WEBSOCKET: 'WebSocketGatewayRuntime', GatewayProtocolType.HTTP: 'HTTPGatewayRuntime', } runtime_cls = get_runtime(gateway_runtime_dict[args.protocol]) with runtime_cls(args) as runtime: runtime.logger.success( f' Gateway with protocol {gateway_runtime_dict[args.protocol]} started' ) runtime.run_forever()
[docs]def ping(args: 'Namespace'): """ Check the connectivity of a Pod :param args: arguments coming from the CLI. """ from jina.checker import NetworkChecker NetworkChecker(args)
[docs]def client(args: 'Namespace'): """ Start a client connects to the gateway :param args: arguments coming from the CLI. """ from jina.clients import Client Client(args)
[docs]def export_api(args: 'Namespace'): """ Export the API :param args: arguments coming from the CLI. """ import json from cli.export import api_to_dict from jina.jaml import JAML from jina import __version__ from jina.logging.predefined import default_logger from jina.schemas import get_full_schema if args.yaml_path: dump_api = api_to_dict() for yp in args.yaml_path: f_name = (yp % __version__) if '%s' in yp else yp with open(f_name, 'w', encoding='utf8') as fp: JAML.dump(dump_api, fp) default_logger.info(f'API is exported to {f_name}') if args.json_path: dump_api = api_to_dict() for jp in args.json_path: f_name = (jp % __version__) if '%s' in jp else jp with open(f_name, 'w', encoding='utf8') as fp: json.dump(dump_api, fp, sort_keys=True) default_logger.info(f'API is exported to {f_name}') if args.schema_path: dump_api = get_full_schema() for jp in args.schema_path: f_name = (jp % __version__) if '%s' in jp else jp with open(f_name, 'w', encoding='utf8') as fp: json.dump(dump_api, fp, sort_keys=True) default_logger.info(f'API is exported to {f_name}')
[docs]def hello(args: 'Namespace'): """ Run any of the hello world examples :param args: arguments coming from the CLI. """ if args.hello == 'fashion': from jina.helloworld.fashion.app import hello_world hello_world(args) elif args.hello == 'chatbot': from jina.helloworld.chatbot.app import hello_world hello_world(args) elif args.hello == 'multimodal': from jina.helloworld.multimodal.app import hello_world hello_world(args) elif args.hello == 'fork': from jina.helloworld.fork import fork_hello fork_hello(args) else: raise ValueError(f'must be one of [`fashion`, `chatbot`, `multimodal`, `fork`]')
[docs]def flow(args: 'Namespace'): """ Start a Flow from a YAML file or a docker image :param args: arguments coming from the CLI. """ from jina import Flow if args.uses: f = Flow.load_config(args.uses) with f: f.block() else: raise ValueError('start a flow from CLI requires a valid `--uses`')
[docs]def hub(args: 'Namespace'): """ Start a hub builder for push, pull :param args: arguments coming from the CLI. """ from jina.hubble.hubio import HubIO getattr(HubIO(args), args.hub)()
[docs]def new(args: 'Namespace'): """ Create a new jina project :param args: arguments coming from the CLI. """ import shutil, os from jina import __resources_path__ shutil.copytree( os.path.join(__resources_path__, 'project-template'), os.path.abspath(args.name) )
[docs]def help(args: 'Namespace'): """ Lookup the usage of certain argument in Jina API. :param args: arguments coming from the CLI. """ from cli.lookup import lookup_and_print lookup_and_print(args.query.lower())