Corporate Training
Request Demo
Click me
Menu
Let's Talk
Request Demo

ElasticSearch Interview questions and Answers

by Venkatesan M, on May 26, 2017 3:57:11 PM

ElasticSearch Interview questions and Answers

Q1. What is an index in ElasticSearch

Ans: An index is similar to a table in relational databases. The difference is that relational databases would store actual values, which is optional in ElasticSearch. An index can store actual and/or analyzed values in an index.

Q2. What is a document in ElasticSearch ? 

Ans: A document is similar to a row in relational databases. The difference is that each document in an index can have a different structure (fields), but should have same data type for common fields.

Each field can occur multiple times in a document with different data types. Fields can contain other documents too.

Q3. Does ElasticSearch have a schema ?

Ans: Yes, ElasticSeach can have mappings which can be used to enforce schema on documents.

Q4. What is a document type in ElasticSearch ?

Ans: A document type can be seen as the document schema / mapping definition, which has the mapping of all the fields in the document along with its data types.

Q5.What is indexing in ElasticSearch ?

Ans: The process of storing data in an index is called indexing in ElasticSearch. Data in ElasticSearch can be dividend into write-once and read-many segments. Whenever an update is attempted, a new version of the document is written to the index.

Q6. What is a node in ElasticSearch ?

Ans: Each instance of ElasticSearch is called a node. Multiple nodes can work in harmony to form an ElasticSearch Cluster.

 

Q7.What is a shard in ElasticSearch ?

Ans: Due to resource limitations like RAM, vCPU etc, for scale-out, applications need to employ multiple instances of ElasticSearch on separate machines. Data in an index can be divided into multiple partitions, each handled by a separate node (instance) of ElasticSearch. Each such partition is called a shard. By default an ElasticSearch index has 5 shards.

Q8. What is a replica in ElasticSearch ?

Ans: Each shard in ElasticSearch has 2 copy of the shard. These copies are called replicas. They serve the purpose of high-availability and fault-tolerance.

Q9. What is an Analyzer in ElasticSearch ?

Ans: While indexing data in ElasticSearch, data is transformed internally by the Analyzer defined for the index, and then indexed. An analyzer is built of tokenizer and filters. Following types of Analyzers are available in ElasticSearch 1.10.

  • STANDARD ANALYZER
  • SIMPLE ANALYZER
  • WHITESPACE ANALYZER
  • STOP ANALYZER
  • KEYWORD ANALYZER
  • PATTERN ANALYZER
  • LANGUAGE ANALYZERS
  • SNOWBALL ANALYZER
  • CUSTOM ANALYZER

Q10. What is a Tokenizer in ElasticSearch ?

Ans: A Tokenizer breakdown fields values of a document into a stream, and inverted indexes are created and updates using these values, and these stream of values are stored in the document.

Q11. What is a Filter in ElasticSearch ?

Ans: After data is processed by Tokenizer, the same is processed by Filter, before indexing. Following types of Filters are available in ElasticSearch 1.10.

  • AND FILTER
  • BOOL FILTER
  • EXISTS FILTER
  • GEO BOUNDING BOX FILTER
  • GEO DISTANCE FILTER
  • GEO DISTANCE RANGE FILTER
  • GEO POLYGON FILTER
  • GEOSHAPE FILTER
  • GEOHASH CELL FILTER
  • HAS CHILD FILTER
  • HAS PARENT FILTER
  • IDS FILTER
  • INDICES FILTER
  • LIMIT FILTER
  • MATCH ALL FILTER
  • MISSING FILTER
  • NESTED FILTER
  • NOT FILTER
  • OR FILTER
  • PREFIX FILTER
  • QUERY FILTER
  • RANGE FILTER
  • REGEXP FILTER
  • SCRIPT FILTER
  • TERM FILTER
  • TERMS FILTER
  • TYPE FILTER

Q12. What is the query language of ElasticSearch ?

Ans: ElasticSearch uses the Apache Lucene query language, which is called Query DSL.

For ElasticSearch Training

Topics:ElasticSearchElasticSearch Interview questions and AnswersInformation Technologies (IT)

Comments

Subscribe

Top Courses in Python

Top Courses in Python

We help you to choose the right Python career Path at myTectra. Here are the top courses in Python one can select. Learn More →

aathirai cut mango pickle

More...