|
|
|
|
|
by techtalsky
4351 days ago
|
|
My takeaways from the site for people who would like a summary: SIREn encodes [...] the index using a completely different model than Lucene, [...] it uses its own disk format, low level compression algorithm and query operator implementation. A comparison between regular method (Blockjoin) and SIREn can be found in this blog post: http://siren.solutions/24-times-less-memory-11-times-faster-... In SIREn, parent-child relationships of the nested elements are materialised and indexed into the same document. This is at the core of SIREn very high performance and scalability. This means that changes in the nested part of the document will require reindexing of the full document. SIREn is Free and Open Source under an identical licensing model than MongoDB: http://www.mongodb.org/about/licensing/ |
|
One of the best use cases for Elasticsearch is log analysis, where 1 log event has little to no nesting (at most a few tags). How does SIREn evaluate in these cases ?