Handle exceptions#

When building a complex solution, unfortunately things go wrong sometimes. Jina does its best to recover from failures, handle them gracefully, and report useful failure information to the user.

The following outlines a number of (more or less) common failure cases, and explains how Jina responds to each one of them.

Executor errors#

In general there are two places where an Executor level error can be introduced.

If an Executor’s __init__ method raises and Exception, the Flow cannot start. In this case this Exception is gets raised by the Executor runtime, and the Flow throws a RuntimeFailToStart Exception.

If one of the Executor’s @requests methods raises and Exception, the offending error message gets added to the response and is sent back to the client. If the gRPC or WebSocket protocols are used, the networking stream is not interrupted and can accept further requests.

In all cases, the Jina Client will raise an Exception.

Network errors#

When an Executor or Head can’t be reached by the Flow’s gateway, it attempts to re-connect to the faulty deployment according to a retry policy. The same applies to calls to Executors that time out. The specifics of this policy depend on the environment the Flow find itself in, and are outlined below.

Hint: Prevent Executor timeouts

If you regularly experience timouts on Executor calls, you may want to consider setting the Flow’s timeout_send attribute to a larger value. You can do this by setting Flow(timeout_send=time_in_ms) in Python or timeout_send: time_in_ms in your Flow YAML with-block.

Especially neural network forward passes on CPU (and other unusually expensive operations) can lead to timeouts with the default setting.

Hint: Custom retry policy

You can override the default retry policy and instead choose a number of retries performed for each Executor. To perform n retries, set Flow(retries=n) in Python, or retries: n in the Flow YAML with block.

If, during the complete execution of this policy, no successful call to any Executor replica could be made, the request is aborted and the failure is reported to the client.

Request retries: Local deployment#

If a Flow is deployed locally (with or without containerized Executors), the following policy for failed requests applies on a per-Executor basis:

  • If there are multiple replicas of the target Executor, try each replica at least once, or until the request succeeds

  • Irrespective of the number of replicas, try the request at least 3 times, or until it succeeds. If there are fewer than 3 replicas, try them in a round-robin fashion

Request retries: Deployment with Kubernetes#

If a Flow is deployed in Kubernetes without a service mesh, retries cannot be distributed to different replicas of the same Executor.

See Also

The impossibility of retries across different replicas is a limitation of Kubernetes in combination with gRPC. If you want to learn more about this limitation, see this Kubernetes Blog post.

An easy way to overcome this limitation is to use a service mesh like Linkerd.

Concretely, this results in the following per-Executor retry policy:

  • Try the request 3 times, or until it succeeds, always on the same replica of the Executor

Request retries: Deployment with Kubernetes and service mesh#

A Kubernetes service mesh can enable load balancing, and thus retries, between replicas of an Executor.

Hint

While Jina supports any service mesh, the output of f.to_kubernetes_yaml() already includes the necessary annotations for Linkerd.

If a service mesh is installed alongside Jina in the Kubernetes cluster, the following retry policy applies for each Executor:

  • Try the request at least 3 times, or until it succeeds

  • Distribute the requests to the replicas according to the service mesh’s configuration

Caution

Many service meshes have the ability to perform retries themselves. Be careful about setting up service mesh level retries in combination with Jina, as it may lead to unwanted behaviour in combination with Jina’s own retry policy.

Instead, you may want to disable Jina level retries by setting Flow(retries=0) in Python, or retries: 0 in the Flow YAML with block.

Failure reporting#

If the retry policy is exhausted for a given request, the error is reported back to the corresponding client.

The resulting error message will contain the network address of the failing Executor. If multiple replicas are present, all addresses will be reported - unless the Flow is deployed using Kubernetes, in which case the replicas are managed by k8s and only a single address is available.

Depending on the client-to-gateway protocol, and they type of error, the error message will be returned in one of the following ways:

Could not connect to Executor:

  • gRPC: A response with the gRPC status code 14 (UNAVAILABLE) is issued, and the error message is contained in the details field

  • HTTP: A response with the HTTP status code 503 (SERVICE_UNAVAILABLE) is issued, and the error message is contained in response['header']['status']['description']

  • WebSocket: The stream closes with close code 1011 (INTERNAL_ERROR) and the message is contained in the WS close message

Call to Executor timed out:

  • gRPC: A response with the gRPC status code 4 (DEADLINE_EXCEEDED) is issued, and the error message is contained in the details field

  • HTTP: A response with the HTTP status code 504 (GATEWAY_TIMEOUT) is issued, and the error message is contained in response['header']['status']['description']

  • WebSocket: The stream closes with close code 1011 (INTERNAL_ERROR) and the message is contained in the WS close message

For any of these scenarios, the Jina Client will raise a ConnectionError containing the error message.

Debug via breakpoint#

Standard Python breakpoints will not work inside Executor methods when called inside a Flow context manager. Nevertheless, import epdb; epdb.set_trace() will work just as a native python breakpoint. Note that you need to pip install epdb to have access to this type of breakpoints.

from jina import Flow, Executor, requests
 
class CustomExecutor(Executor):
    @requests
    def foo(self, **kwargs):
        a = 25
        import epdb; epdb.set_trace() 
        print(f'\n\na={a}\n\n')
 
def main():
    f = Flow().add(uses=CustomExecutor)
    with f:
        f.post(on='')

if __name__ == '__main__':
    main()
from jina import Flow, Executor, requests
 
class CustomExecutor(Executor):
    @requests
    def foo(self, **kwargs):
        a = 25
        breakpoint()
        print(f'\n\na={a}\n\n')
 
def main():
    f = Flow().add(uses=CustomExecutor)
    with f:
        f.post(on='')
 
if __name__ == '__main__':
    main()