-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[jaeger-v2] Deployment options #5221
Comments
@yurishkuro I would like to discuss about it and need your valuable guidance to come up with a perfect solution for deployments for v2 |
@yurishkuro i would like to work on the issue need some resources to get a brief idea about the project and come with a solution reagarding the issue |
There are already project brief and resources in the issue description. Please check those. If you need further details, you could look deeper into the deployment options of otel collector on kubernetes. For example, this one explains it well (the author is maintainer of both jaeger and otel): https://github.com/jpkrohling/opentelemetry-collector-deployment-patterns/tree/main/pattern-3-kubernetes |
Thanks for the valuable information @haanhvu it surely helped me a lot about the Isuue |
I got working V2 with memory store with the OTEL operator:
The elasticsearch will be more complicated as it requires index cleaner and rollover which run as cronjobs in jaeger v1. However, this functionality could be implemented in the V2 as a separate extension or be part of the storage exporter e.g. extensions:
jaeger_storage:
elasticsearch:
index_cleaner:
num_days: ....
jaeger_elasticearch_index_cleeaner:
num_days: ... Alternatively we could let users configure https://opensearch.org/docs/latest/im-plugin/ism/index/ directly for rollover and index cleaning functionality and later maybe build it into the storage. Cassandra will require schema creation job at startup which could be as well implemented in Jaeger as an extension. |
@yurishkuro Isn't our project got slot in GSOC? I haven't seen our project any in selected projects of CNCF. If yes, why can't we prioritise this deployments in LFX Mentorship for this Fall season? |
This project was not selected for GSoC 2024. We will likely include it as Fall LFX Mentorship project. |
Replacing this ticket with separate issues |
This project was proposed but not selected as one of CNCF Google Summer of Code projects.
Background
We are working towards Jaeger v2 that is re-architected to be a custom distribution of the OpenTelemetry Collector. There are multiple tracks towards that milestone, one of them is to address the deployment process for the end users.
There are existing solutions for deploying jaeger-v1 and OTEL Collector:
The main issue is that they manage jaeger-v1 deployment, which:
In Jaeger-v2 we are dealing with a single binary that is configurable to fit different deployment modes using config files. So the existing operators/charts won't work for v2, we need to modify them.
There is also an OTEL Operator that manages OTEL Collector, which is conceptually much closer to jaeger-v2. However, Jaeger operator/chart also manage storage backends, so OTEL Operator is not sufficient out of the box.
Objectives
Expected Outcome:
Recommended Skills
Go, Kubernetes, scripting, CI/CD, understanding of Kubernetes Operator concepts.
Mentors:
Use CNCF Slack to reach maintainers (see https://www.jaegertracing.io/get-in-touch/)
References
jaeger/cmd/jaeger/main.go
Line 17 in ef4791e
The text was updated successfully, but these errors were encountered: