Solr (pronounced "solar") is an
open-source enterprise-search platform, written in
Java
Java (; id, Jawa, ; jv, ꦗꦮ; su, ) is one of the Greater Sunda Islands in Indonesia. It is bordered by the Indian Ocean to the south and the Java Sea to the north. With a population of 151.6 million people, Java is the world's mo ...
. Its major features include
full-text search
In text retrieval, full-text search refers to techniques for searching a single computer-stored document or a collection in a full-text database. Full-text search is distinguished from searches based on metadata or on parts of the original tex ...
, hit highlighting,
faceted search, real-time indexing, dynamic clustering, database integration,
NoSQL
A NoSQL (originally referring to "non- SQL" or "non-relational") database provides a mechanism for storage and retrieval of data that is modeled in means other than the tabular relations used in relational databases. Such databases have existed ...
features and rich document (e.g., Word, PDF) handling. Providing distributed search and index replication, Solr is designed for scalability and
fault tolerance. Solr is widely used for enterprise search and analytics use cases and has an active development community and regular releases.
Solr runs as a standalone full-text search server. It uses the
Lucene Java search library at its core for full-text indexing and search, and has
REST-like
HTTP
The Hypertext Transfer Protocol (HTTP) is an application layer protocol in the Internet protocol suite model for distributed, collaborative, hypermedia information systems. HTTP is the foundation of data communication for the World Wide Web, ...
/
XML
Extensible Markup Language (XML) is a markup language and file format for storing, transmitting, and reconstructing arbitrary data. It defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. ...
and
JSON
JSON (JavaScript Object Notation, pronounced ; also ) is an open standard file format and data interchange format that uses human-readable text to store and transmit data objects consisting of attribute–value pairs and arrays (or other s ...
APIs that make it usable from most popular programming languages. Solr's external configuration allows it to be tailored to many types of applications without Java coding, and it has a plugin architecture to support more advanced customization.
Apache Solr is developed in an open, collaborative manner by the Apache Solr project at the
Apache Software Foundation.
History
In 2004, Solr was created by Yonik Seeley at
CNET Networks
''CNET'' (short for "Computer Network") is an American media website that publishes reviews, news, articles, blogs, podcasts, and videos on technology and consumer electronics globally. ''CNET'' originally produced content for radio and televi ...
as an in-house project to add search capability for the company website.
In January 2006, CNET Networks decided to openly publish the source code by donating it to the
Apache Software Foundation. Like any new Apache project, it entered an incubation period which helped solve organizational, legal, and financial issues.
In January 2007, Solr graduated from incubation status into a standalone top-level project (TLP) and grew steadily with accumulated features, thereby attracting users, contributors, and committers. Although quite new as a public project, it powered several high-traffic websites.
In September 2008, Solr 1.3 was released including distributed search capabilities and performance enhancements among many others.
In January 2009, Yonik Seeley along with Grant Ingersoll and Erik Hatcher joined
Lucidworks (formerly Lucid Imagination), the first company providing commercial support and training for Apache Solr search technologies. Since then, support offerings around Solr have been abundant.
In November 2009, saw the release of Solr 1.4. This version introduced enhancements in indexing, searching and faceting along with many other improvements such as rich document processing (
PDF,
Word
A word is a basic element of language that carries an objective or practical meaning, can be used on its own, and is uninterruptible. Despite the fact that language speakers often have an intuitive grasp of what a word is, there is no consen ...
,
HTML
The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScri ...
), Search Results clustering based on
Carrot2
Carrot² is an open source search results clustering engine. It can automatically cluster small collections of documents, e.g. search results or document abstracts, into thematic categories. Carrot² is written in Java and distributed under the BSD ...
and also improved database integration. The release also features many additional plug-ins.
In March 2010, the
Lucene and Solr projects merged. Separate downloads continued, but the products were now jointly developed by a single set of committers.
In 2011, the Solr version number scheme was changed in order to match that of Lucene. After Solr 1.4, the next release of Solr was labeled 3.1, in order to keep Solr and Lucene on the same version number.
In October 2012, Solr version 4.0 was released, including the new SolrCloud feature. 2013 and 2014 saw a number of Solr releases in the 4.x line, steadily growing the feature set and improving reliability.
In February 2015, Solr 5.0 was released, the first release where Solr is packaged as a standalone application, ending official support for deploying Solr as a
war. Solr 5.3 featured a built-in pluggable Authentication and Authorization framework.
In April 2016, Solr 6.0 was released. Added support for executing Parallel SQL queries across SolrCloud collections. Includes StreamExpression support and a new JDBC Driver for the SQL Interface.
In September 2017, Solr 7.0 was released. This release among other things, added support multiple replica types, auto-scaling, and a Math engine.
In March 2019, Solr 8.0 was released including many bugfixes and component updates. Solr nodes can now listen and serve HTTP/2 requests. Be aware that by default, internal requests are also sent by using HTTP/2. Furthermore, an admin UI login was added with support for BasicAuth and Kerberos. And plotting math expressions in Apache Zeppelin is now possible.
In November 2020, Bloomberg donated th
Solr Operatorto the Lucene/Solr project. The Solr Operator helps deploy and run Solr in
Kubernetes.
In February 2021, Solr was established as a separate Apache project (TLP), independent from Lucene.
In May 2022, Solr 9.0 was released, as the first release independent from Lucene, requiring Java 11, and with highlights such as KNN "Neural" search, better modularization, more security plugins and more.
Operations
In order to search a document, Apache Solr performs the following operations in sequence:
# Indexing: converts the documents into a machine-readable format.
# Querying: understanding the terms of a query asked by the user. These terms can be images or keywords, for example.
# Mapping: Solr maps the user query to the documents stored in the database to find the appropriate result.
# Ranking: as soon as the engine searches the indexed documents, it ranks the outputs by their relevance.
Community
Solr has both individuals and companies who contribute new features and bug fixes.
Integrating Solr
Solr is bundled as the built-in search in many applications such as
content management system
A content management system (CMS) is computer software used to manage the creation and modification of digital content ( content management).''Managing Enterprise Content: A Unified Content Strategy''. Ann Rockley, Pamela Kostur, Steve Manning. New ...
s and
enterprise content management
Enterprise content management (ECM) extends the concept of content management by adding a timeline for each content item and, possibly, enforcing processes for its creation, approval and distribution. Systems using ECM generally provide a secur ...
systems.
Hadoop
Apache Hadoop () is a collection of open-source software utilities that facilitates using a network of many computers to solve problems involving massive amounts of data and computation. It provides a software framework for distributed storage ...
distributions from
Cloudera,
Hortonworks and
MapR all bundle Solr as the search engine for their products marketed for
big data.
DataStax DSE integrates Solr as a search engine with
Cassandra
Cassandra or Kassandra (; Ancient Greek: Κασσάνδρα, , also , and sometimes referred to as Alexandra) in Greek mythology was a Trojan priestess dedicated to the god Apollo and fated by him to utter true prophecies but never to be believe ...
. Solr is supported as an end point in various data processing frameworks and
Enterprise integration frameworks.
Solr exposes industry standard
HTTP
The Hypertext Transfer Protocol (HTTP) is an application layer protocol in the Internet protocol suite model for distributed, collaborative, hypermedia information systems. HTTP is the foundation of data communication for the World Wide Web, ...
REST-like APIs with both
XML
Extensible Markup Language (XML) is a markup language and file format for storing, transmitting, and reconstructing arbitrary data. It defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. ...
and
JSON
JSON (JavaScript Object Notation, pronounced ; also ) is an open standard file format and data interchange format that uses human-readable text to store and transmit data objects consisting of attribute–value pairs and arrays (or other s ...
support, and will integrate with any system or programming language supporting these standards. For ease of use there are also client libraries available for
Java
Java (; id, Jawa, ; jv, ꦗꦮ; su, ) is one of the Greater Sunda Islands in Indonesia. It is bordered by the Indian Ocean to the south and the Java Sea to the north. With a population of 151.6 million people, Java is the world's mo ...
,
C#,
PHP
PHP is a General-purpose programming language, general-purpose scripting language geared toward web development. It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1993 and released in 1995. The PHP reference implementati ...
,
Python,
Ruby
A ruby is a pinkish red to blood-red colored gemstone, a variety of the mineral corundum (aluminium oxide). Ruby is one of the most popular traditional jewelry gems and is very durable. Other varieties of gem-quality corundum are called sapp ...
and most other popular programming languages.
See also
*
Open Semantic Framework
The Open Semantic Framework (OSF) is an integrated software stack using semantic technologies for knowledge management. It has a layered architecture that combines existing open source software with additional open source components developed s ...
*
Search oriented architecture {{unreferenced, date=October 2007
The use of search engine technology is the main integration component in an information system. In a traditional business environment the architectural layer usually occupied by a relational database management sy ...
*
List of information retrieval libraries
References
Bibliography
*
*
*
*
*
*
*
*
External links
*
Ansible role to install SolrCloud in a Debian environment
{{Apache Software Foundation
Solr
Free software programmed in Java (programming language)
Free search engine software
Search engine software
Database-related software for Linux
NoSQL