简体   繁体   中英

Elasticsearch database: Where does elasticsearch store data?

I am curious to know how exactly elasticsearch manages data at its server? Does it have an inbuilt nosql database or does it store in files or is it using some existing db like mysql, mongodb etc?

Elasticsearch internally uses Lucene which uses the segments(stored in file system) to store the actual data and it uses the inverted index to enable the fast search capabilities.

Please refer elasticsearch official blog on bottom up which explains above statment in quite detail with examples.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM