+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.

Related questions

0 votes
asked Jul 7, 2022 in ElasticSearch by sharadyadav1986
+1 vote
asked Feb 24, 2023 in ElasticSearch by rajeshsharma
...