+1 vote
in ElasticSearch by
What is an index in Elasticsearch?

1 Answer

0 votes
by

An index in Elasticsearch is equivalent to a database in MySQL relational database structure. An index consists of multiple types (tables) and documents inside it. Elasticsearch can have multiple indices.

Elasticsearch -> Index -> Type -> Document with properties

MySQL -> Database -> Table -> Columns/Rows

Typically, we can say that an index is a collection of documents that contain information inside it. It can store actual and analyzed value as well.

...