jina
jina copied to clipboard
☁️ Build multimodal AI applications with cloud-native stack
# Context one requested metrics is to measure the size in bytes of the requests issue : https://github.com/jina-ai/jina/issues/4940 ``` ┌─────────┐ │ Client │ └─┬───────┘ │ ▲ │ │ │ │...
Goal of this PR is to enable `retry_mechanism` in the client. - [x] Expose `num_retries` and `retry_delay` in the `client.post` API - [ ] Clarify usage of `continue_on_error` with any...
**Goals:** - resolves #5155 - [x] Integrate OpenTelemetry API and SDK. - [ ] Provide environment variable configurations to enable tracking when required. Use console exporter for now. - [x]...
**Describe the feature** Improve observability using [OpenTelemetry](https://opentelemetry.io) and the available sdk implementations to - enable tracing of requests - standardize the already available prometheus metrics collection - API is need...
**Describe the feature** When the flow is using an external executor, and its access is protected with an authentication credential (i.g,. access token). For example, the hosted free clip-as-service `api.clip.jina.ai`....
First, I thank Jina for an easy deployment/scaling framework. In my scenario, I have independent physical instance GPU resources, so is there any way to host replicas of an executor...
when i use pickle to dump tfidfvectorizer, it throws AttributeError: Can't pickle local object JinaLogger __init__ "locals""lambda"
**Describe the feature** More clear logs and error handler. **Your proposal** For now, it's very hard to parse jina executor logs, that will cause user setup alerts diffcultly. I'd suggest...
**Describe the bug** ```python from datetime import datetime from jina import Flow, Executor, DocumentArray, Document class MyExecutor(Executor): def foo(self, **kwargs): print('foo') f = Flow().add(uses=MyExecutor) with f: da = DocumentArray([Document(text='hello', tags={'date':...
# Context Some metrics are only available in the gateway and not in the head this should not be the case. List of metrics impacted: - [ ] jina_number_of_pending_requests -...