It’s interesting as someone in the search space how many companies are aiming to “replace Elasticsearch”
In my experience, the care and feeding that goes into an Elastic Search cluster feels like it's often substantially higher than that involved in the primary data store, which has always struck me as a little odd (particularly in cases where the primary data store is an RDBMS). I'd be very happy to use simpler more bulletproof solutions with a subset of ES's features for different use cases.
How we replaced Elasticsearch and MongoDB with Rust and RocksDB
31–40 of 104 posts
Re: How we replaced Elasticsearch and MongoDB with Rust and RocksDB
#32Earlier quoted context omitted.
Doesn't sound like it, but it's a nice writeup of the tools they stitched together. For someone to copy and open source... hopefully :)
Tempted, specially for switching H3 instead of S2… I prototyped a similar solution a couple of weeks ago, so I could probably do a second pass
Re: How we replaced Elasticsearch and MongoDB with Rust and RocksDB
#33They're not open sourcing it though?
Doesn't sound like it, but it's a nice writeup of the tools they stitched together. For someone to copy and open source... hopefully :)
Re: How we replaced Elasticsearch and MongoDB with Rust and RocksDB
#34Quickwit[1] looks interesting, found via Tantivity reference. Kind of like ES w/ Lucene.
Re: How we replaced Elasticsearch and MongoDB with Rust and RocksDB
#35Earlier quoted context omitted.
In my experience, the care and feeding that goes into an Elastic Search cluster feels like it's often substantially higher than that involved in the primary data store, which has always struck me as a little odd (particularly in cases where the primary data store is an RDBMS). I'd be very happy to use simpler more bulletproof solutions with a subset of ES's features for different use cases.
To add another data point: After working with ES for the past 10 years in production I have to say that ES is never giving us any headaches. We've had issues with ScyllaDB, Redis etc. but ES is just chugging along and just works. The one issue I remember is: On ES 5 we once had an issue early on where it regularly went down, turns out that some _very long_ input was being passed into the search by some scraper and ki…
The only bigger issue we had was when we initially added 10 nodes to double the initial capacity of the cluster. Performance tanked as a result, and it took us about half a day until we finally figured out that the new nodes were using dmraid (Linux RAID0) and as a result the block devices had a really high default read-ahead value (8192) compared to the existing nodes, which resulted in heavy read amplification. The ES manual specifically documents this, but since we hadn't run into this issue ourselves it took us a while to realise what was at fault.
Re: How we replaced Elasticsearch and MongoDB with Rust and RocksDB
#36Bit thin on details and not looking like they’ll open source it, but if someone clicked the post because they’re looking for their “replace ES” thing: Both https://typesense.org/ and https://duckdb.org/ (with their spatial plugin) are excellent geo performance wise, the latter now seems really production ready, especially when the data doesn’t change that often. Both fully open source including clustered/sharded setu…
Re: How we replaced Elasticsearch and MongoDB with Rust and RocksDB
#37Bit thin on details and not looking like they’ll open source it, but if someone clicked the post because they’re looking for their “replace ES” thing: Both https://typesense.org/ and https://duckdb.org/ (with their spatial plugin) are excellent geo performance wise, the latter now seems really production ready, especially when the data doesn’t change that often. Both fully open source including clustered/sharded setu…
Re: How we replaced Elasticsearch and MongoDB with Rust and RocksDB
#38Re: How we replaced Elasticsearch and MongoDB with Rust and RocksDB
#39Nice... it's cool to see how different companies are putting together best fit solutions. I'm also glad that they at least started out with off the shelf apps instead of jumping to something like a bespoke solution early on. Quickwit[1] looks interesting, found via Tantivity reference. Kind of like ES w/ Lucene. 1. https://github.com/quickwit-oss/quickwit
Re: How we replaced Elasticsearch and MongoDB with Rust and RocksDB
#40It’s interesting as someone in the search space how many companies are aiming to “replace Elasticsearch”
In my experience, the care and feeding that goes into an Elastic Search cluster feels like it's often substantially higher than that involved in the primary data store, which has always struck me as a little odd (particularly in cases where the primary data store is an RDBMS). I'd be very happy to use simpler more bulletproof solutions with a subset of ES's features for different use cases.