You are on page 1of 3

Top Answers to Solr Interview Questions

1. Compare Solr & ElasticSearch


Criteria Solr ElasticSearch
Data varieties JSON, XML, CSV JSON
Data de duplication Supported Not supported
Updates Through configuration changes Through custom work
2. What is Apache Solr?
Apache Solr is a standalone full-text search platform to perform searches on
multiple websites and index documents using XML and HTTP. Built on a Java Library
called Lucence, Solr supports a rich schema specification for a wide range and
offers flexibility in dealing with different document fields. It also consists of
an extensive search plugin API for developing custom search behavior.

3. What file contains configuration for data directory?


Solrconfig.xml file contains configuration for data directory.

Check out this video on Apache Solr Tutorial

Learn for free ! Subscribe to our youtube Channel.

4. What file contains definition of the field types and fields of documents?
schema.xml file contains definition of the field types and fields of documents.

5. What are the features of Apache Solr?


Allows Scalable, high performance indexing Near real-time indexing.
Standards-based open interfaces like XML, JSON and HTTP.
Flexible and adaptable faceting.
Advanced and Accurate full-text search.
Linearly scalable, auto index replication, auto failover and recovery.
Allows concurrent searching and updating.
Comprehensive HTML administration interfaces.
Provides cross-platform solutions that are index-compatible.
To know more about how Apache Solr works perfectly with Hadoop read this blog.

6. What is Apache Lucene?


Supported by Apache Software Foundation, Apache Lucene is a free, open-source,
high-performance text search engine library written in Java by Doug Cutting.
Lucence facilitates full-featured searching, highlighting, indexing and
spellchecking of documents in various formats like MS Office docs, HTML, PDF, text
docs and others.

7. What is request handler?


When a user runs a search in Solr, the search query is processed by a request
handler. SolrRequestHandler is a Solr Plugin, which illustrates the logic to be
executed for any request.Solrconfig.xml file comprises several handlers (containing
a number of instances of the same SolrRequestHandler class having different
configurations).

8. What are the advantages and disadvantages of Standard Query Parser?


Also known as Lucence Parser, the Solr standard query parser enables users to
specify precise queries through a robust syntax. However, the parser�s syntax is
vulnerable to many syntax errors unlike other error-free query parsers like DisMax
parser.

9. What all information is specified in field type?


A field type includes four types of information:
Name of field type.
Field attributes.
An implementation class name.
If the field type is Text Field , a description of the field analysis for the field
type.
Go through Apache Solr Tutorial to learn more about Apache Solr.

10. Explain Faceting in Solr.?


As the name suggests, Faceting is the arrangement and categorization of all search
results based on their index terms. The process of faceting makes the searching
task smoother as users can look for the exact results.

11. Define Dynamic Fields?


Dynamic Fields are a useful feature if users by any chance forget to define one or
more fields. They allow excellent flexibility to index fields that have not been
explicitly defined in the schema.

12. What is Field Analyzer?


Working with textual data in Solr, Field Analyzer reviews and checks the filed text
and generates a token stream. The pre-process of analyzing of input text is
performed at the time of searching or indexing and at query time. Most Solr
applications use Custom Analyzers defined by users. Remember, each Analyzer has
only one Tokenizer.

Get a clear understanding of Solr Analyzer through this Big Data Hadoop and Spark
community.

13. What is the use of tokenizer?


It is used to split a stream of text into a series of tokens, where each token is a
subsequence of characters in the text. The token produced are then passed through
Token Filters that can add, remove or update the tokens. Later,that field is
indexed by the resulting token stream.

14. What is phonetic filter?


Phonetic filter creates tokens using one of the phonetic encoding algorithms in the
org.apache.commons.codec.language package.

15. What is SolrCloud?


Apache Solr facilitates fault-tolerant, high-scalable searching capabilities that
enable users to set up a highly-available cluster of Solr servers. These
capabilities are well revered as SolrCloud.

16. What is copying field?


It is used to describe how to populate fields with data copied from another field.

17. What is Highlighting?


Highlighting refers to the fragmentation of documents matching the user�s query
included in the query response. These fragments are then highlighted and placed in
a special section, which is used by clients and users to present the snippets. Solr
consists of a number of highlighting utilities having control over different
fields. The highlighting utilities can be called by Request Handlers and reused
with standard query parsers.

18. Name different types of highlighters?


There are 3 highlighters in Solr:

Standard Highlighter : provides precise matches even for advanced queryparsers.


FastVector Highlighter : Though less advanced than Standard Highlighter, it works
better for more languages and supports Unicode breakiterators.
Postings Highlighter : Much more precise, efficient and compact than the above
vector one but inappropriate for a more number of query terms.
19. What is the use of stats.field?
It is used to generate statistics over the results of arbitrary numeric functions.

20. What command is used to see how to use the bin/Solr script?
Execute $ bin/Solr �helpto see how to use the bin/Solr script.

21. Which syntax is used to stop Solr?


$ bin/solr stop -p 8983 is used to stop Solr.
22. Which command is used to start Solr in foreground?
$ bin/solr start �f is used to start Solr in foreground.
23. What syntax is used to check whether Solr is currently running or not?
$ bin/solr status is used to check Solr running status.
24. Give the syntax to start the server.
$ bin/solr start is used to start the server.
25. How to shut down Apache Solr?
Solr is shut down from the same terminal where it was launched. Click Ctrl+C to
shut it down.

26. What data is specified by Schema?


Schema declares �

how to index and search each field.


what kinds of fields are available.
what fields are required.
what field should be used as the unique/primary key
27. Name the basic Field types in Solr?
date.
long
double
text
float
Become Master of Apache Solr by going through this online Solr Training.

28. How to install Solr?


The three steps of Installation are:

Server-related files, e.g. Tomcat or start.jar (Jetty).


Solr webapp as a .war.
Solr Home which comprises the data directory and configuration files
29. What are the important configuration files of Solr?
Solr supports two important configuration files

solrconfig.xml.
schema.xml
30. What are the most common elements in solrconfig.xml?
Search components
Cache parameters
Data directory location
Request handlers

You might also like