Debug#
Not applicable to containerized Executors
This does not work for containerized Executors.
In this tutorial you will learn how to debug Hello Executor step by step.
Pull the Executor#
Pull the source code of the Executor you want to debug:
jina hub pull jinaai://jina-ai/Hello
from jina import Executor
Executor.from_hub('jinaai://jina-ai/Hello')
Set breakpoints#
In the ~/.jina/hub-package
directory there is one subdirectory for each Executor that you pulled, named by the Executor ID. You can find the Executor’s source files in this directory.
Once you locate the source, you can set the breakpoints as you always do.
Debug your code#
You can debug your Executor like any Python code. You can either use the Executor on its own or inside a Deployment:
from jina import Executor
exec = Executor.from_hub('jinaai://jina-ai/Hello')
# Set breakpoint as needed
exec.foo()
from docarray import Document
from jina import Deployment
dep = Deployment(uses='jinaai://jina-ai/Hello')
with dep:
res = dep.post('/', inputs=Document(text='hello'), return_results=True)
print(res)