-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Neural Search - From Prototype to Production with Jina
By :

The Executor represents the processing component in a Jina Flow. It performs a single task on a Document or DocumentArray. You can think of an Executor as the logical part of Jina. Executors are the ones that will perform tasks of all kinds on a Document. For example, you could have an Executor for extracting text from a PDF file, or for encoding audio for your Document. They handle all of the algorithmic tasks in Jina.
Since Executors are one of the main parts of Jina, and they are the ones that perform all the algorithmic tasks, it would be very useful for you to make them in a way that means they could be easily shared with other people, so that others can re-use your work. Similarly, you could use prebuilt Executors made by someone else in your own code. This is in fact possible because Executors are easily available in a marketplace, which in Jina is called Jina Hub (https://hub.jina.ai/). There you can browse between various Executors that solve different...