Johannes Messner
Johannes Messner
## Problem Endpoint discovery makes is so that requests do not reach executors where the endpoint doesn't match. For testing purposes, we often don't add an Executor, add `BasExecutor` will...
When a 429 (too many requests) happens, the client should be able to report the status of the stream: what requests have been sent, what responses have been received. The...
For Docker Compose and k8s, give hint/warning about jina version match between gateway and executors
Compatability between Gateway and Executors is not always given if there is a jina version mismatch between the two. In our compose/k8s we don't talk about the version of the...
We want to support this syntax: ```python e = MyExec(workspace=...) ```
Filter queries are passed on the the storage backend that is used, and therefore use the syntax that is supported by that backend. This is explained on the page of...
*Goals:** This adds `.root_id` to `Document`. `.root_id` is similar to `.parent_id`, but points _all the way to the top_, instead of just one chunk-level above. This is particularly useful in...
`root_id` is like `parent_id`, but instead of pointing one level above, it points all the way to the top (root). https://github.com/jina-ai/docarray/pull/460
This **proof of concept** shows how we can make our dataclass types more flexible, for example by allowing the user to set the desired Image size right there. This POC...
In many places (such as, e.g., [here](https://github.com/jina-ai/docarray/commit/b905405bf2d74daab9c95f68ffceb5ca82523e74#diff-15a3e68c0ad54692e1edab9a84feee923a43d3fb8de748f91f46bf64914d5d6bR141-R143)), we use string keys to access information in a Document's `_metadata`. This is not very clean and prone to bugs/typos/etc. We should collect...