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
Additional storage backends #638
Comments
Did you remove the flags for elasticsearch in jaeger-collector? Because I'm doing a test using the image docker, which version is:
and I cannot see the elasticsearch flags. |
It looks like you're using latest instead of 1.1. We recently moved around some of the flags so that we can support plugins better #625. Using latest, you have to instead use env variable SPAN_STORAGE=elasticsearch to use the elasticsearch flags. I'd recommend that you use 1.1 since this change will be apart of 1.2 and will be documented at that time. |
Thanks for the reply, yes I was using the latest version. I will use the 1.1 |
I would love to see a SQL option (whatever ANSI SQL that will be least vendor lock-in). |
Since I work with PostgreSQL, I sure wouldn't complain. But honestly I'm not sure a SQL db is an optimal store for largely free-form metrics of this nature. PostgreSQL at least offers the But you inevitably land up with someone putting an ORM on top to "abstract" the DB. Then the ORM performs terribly, gobbles memory and everyone says "the SQL backend is slow, use instead". |
Related issue to this one is #551. Upvote if you are interested in it. |
New related issue- |
We are looking at using BigQuery as a storage layer. Presumably this could work with a SQL storage option. SQL can be a generic way to deal with columnar data stores in a generic way. I would complain about a BigQuery specific solution, but I think there is a place for generic SQL interface beyond RDBs. |
I assume that even if some database can be treated as SQL and accessed via standard database/sql API, we still need to statically import the actual driver. Granted, this may be less maintenance than a dedicated SpanStorage implementation. However, now that the protobuf model has been merged, nothing is blocking us from moving on the storage plugin dev, eg using something like harshicorp grpc plugin framework. |
|
Giving my two cents.. an ANSI SQL could work for small workloads, so may be useful for lower-throughput applications that still want to benefit from this tool. I will also throw out there that Timescale (a Postgres extension) may be a good fit for the required high write throughput. |
Clickhouse are SQL high performance storage very efficient for log and trace storage and whold be perfect storage alternative to cassandra original one... they are a true column db... distributed...compressed... they are near to the CQL (sql like query language)... they use an SQL like language to... |
I just thought that I'd drop something here to say that there is also support for using Couchbase as a storage backend (via the grpc plugin), currently at https://github.com/chvck/couchbase-jaeger-storage-plugin. Will likely move to the couchbase-labs organisation in time. |
Has someone started to work on Azure CosmosDB integration? It has support for Cassandra API, but I couldn't manage to make it work... |
I just created an issue proposing Chronowave as storage backend. #2534 |
What about ClickHouse? Clickhouse is very cool |
With the recent changes to ElasticSearch licensing, this just because SUPER important. |
The ES changes do look worrying, but not sure this justifies supporting Solr. It does help the case of advancing with some other storage. |
AWS announced an Apache-2 licensed fork of ES, logz.io also said something similar (could be the same effort). So I don't think there's reason to panic. I don't think Elastic changed the terms for the Go driver which we started using in OTEL-based collector, but we'd need to watch for that. |
Absolutely, especially because they can't change the license for something that was released already. So, folks currently using ES don't have a reason to change immediately. If they need to update for some reason, like due to a security problem or general bug fix, then it might become problematic. While I appreciate the work that logz.io is doing in this front, having multiple sources of ES doesn't help us in supporting our users. On day 1, they'll all be compatible among each other, but each fork will tend to follow its own path over time. Meaning: we'd need to decide which one we'll be "officially" supporting. |
We are working with several organizations including AWS on an open source version of ES and Kibana which will be Apache licensed and hopefully part of the ASF. I will know more in the coming days. I've had a hard time getting RedHat engaged (they have canceled twice now) so if you can help with that @jpkrohling then we'd love it :) Anyone interested in contributing or taking part in the community is welcome. I am collecting info here to start: https://docs.google.com/forms/d/e/1FAIpQLSfykAk4Bhc-dhjR0AXFP7T2oFmsLUxONbD6NwmgMz4usXSGkw/viewform?usp=sf_link |
This is the only issue that is not closed. #2633 is closed so i am announcing my work to support s3 for jaeger as a plugin. We needed a cheap way to store data and elasticsearch is expensive for us (whether managed - price or self-managed - on the operational perspective) I took the work done by the amazing team at Grafana for their loki code and use that to write an s3 plugin. It's still a WIP and it stores indexes locally and syncs chunks of data on s3. (I am seeing indexes being synced as well). Data stored is in boltdb format and shipped to s3 via cortex. (i am leveraging on loki's codebase i am not repeating doing other people's work). Cortex is also used to query the data from s3 using PromQL (which i will implement on the plugin's reader) a side effect of this work is support for Google's GCP, Amazon DynamoDB and Google's BigTable as well. More info here: https://grafana.com/docs/loki/latest/operations/storage/boltdb-shipper/ jaeger-s3 code: https://github.com/muhammadn/jaeger-s3/tree/develop Also you will need my fork of jaeger, which is a small change for the file flag at https://github.com/muhammadn/jaeger-s3/tree/develop Note: It's working on both postgresql and now it can upload to s3. so two things in parallel for me to debug in postgresql to better understand the data. But the postgresql code will be removed once i get both writer and reader working. Contributions are welcome! |
Interesting idea, good luck with the work @muhammadn. Remember, you'll have to figure out how to support querying for the data. My understanding of loki is that you can't do a free text search easily since the data is not all indexed. How will you support the querying of data with this new storage support? |
Thanks @jkowall ! Conversations like this is what motivates me. I've managed to pull out the data from s3 through cortex by querying it using promql (basically logql which is based on promql) - You're right that the data indexed only are the time and labels and i can make a search using the labels. Labels are the only thing you can do a search on, though may not as flexible as SQL or ES. But i am thinking if it's better to go to Grafana's Tempo as i found out about it. But that's a discussion i would make in Tempo's project. |
The creator of Tempo @joe-elliott is a maintainer here at Jaeger and is also an engineer with Grafana Labs. We had this discussion, but right now Tempo cannot support the types of queries the Jaeger UI does today. I know that may change, at which point Tempo would be a good Jaeger backend, but today it cannot do everything necessary. This is the compromise with something that doesn't do full text indexing versus selective queries or allowing queries based on a specific trace or short timeframe. The cost benefit of using non-indexing technologies are there, but flexibility is not the same. |
@jkowall I've stabilised the code without any crashes now and I can query/see the data from Jaeger UI. I've watched @joe-elliott 's video. Tempo is limited to searching TraceID but with jaeger-s3, searching is limited to labels and there are many label variables that i can use to construct the query. Discussions on jaeger-s3 plugin will be on my repo, thanks all! |
Cool! Nice job @muhammadn I'm curious how the performance is with a search using S3 in that manner. Are you planning on deploying or using this setup? |
@muhammadn I re-opened #2633 and linked your repo at the top. Suggest moving discussions/updates there. |
@Xitric and I are working in on a storage backend for Humio using the grpc plugin. The repository can currently be found at https://github.com/em135/humio-jaeger-plugin. I have opened an issue for this: #3005 |
If S3 is supported, I would suggest to support GCS as well, which is also an objects-storage for all Google Cloud users. For our use-case that would be tremendous helpful! |
@galan it does actually, despite the name is jaeger-s3, i had already added support for GCS (and Azure Storage) for quite some time but i have not tested it. Maybe you can go to https://github.com/muhammadn/jaeger-s3 to try it out. Related code to GCS: All you need is to modify the configuration for jaeger-s3 to this: https://grafana.com/docs/loki/latest/operations/storage/boltdb-shipper/#example-configuration which has the GCS config. I will update the documentation to jaeger-s3 include GCS and Azure as well. (and probably change the project name entirely) Do tell me if you need help. But i think we can move this discussion to #2633 @galan Update: I have updated the documentation - https://github.com/muhammadn/jaeger-s3/blob/main/README.md Also just a question from the community, should i rename this project as a more generic name rather than jaeger-s3 since this plugins will support GCS and Azure as well? |
@jpkrohling The Alibaba cloud log service has supported the jaeger, and here are the gifs of the plugin. Link: https://github.com/qiansheng91/jaeger-sls#quick-start |
Can i use other jaeger collector as backend for my jaeger collector? |
Jaeger collector cannot send data (e.g. over gRPC) to other jaeger collector. However this capability is supported with OTEL collector. |
@yurishkuro Would highly recommend to add Azure Table Storage as a backend storage option as well. |
@yurishkuro Could you please add PostgreSQL with Promscale into the list.? Now Promscale is Jaeger storage complaint too :) Thanks. |
@yurishkuro could you please add RediSearch to the list? I've worked on a GRPC Plugin to Store Traces on Redis Search and this is close to the first release, I'm just adding a few performance tests. |
i use jaeger with timescaledb in kubernetes |
@vemula-anu please do not post support questions to this issue, create a new question in Discussions. |
Could you please add Yugabyte to the list? #4354 |
Opening this issue to keep track of other related issues.
Relevant issue: plugin support #422 (done).
The text was updated successfully, but these errors were encountered: