Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
October 6, 2022 10:03 am GMT

In One Minute : Elasticsearch

Elasticsearch is a search engine based on the Lucene library.
It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents.
Elasticsearch is developed in Java and is dual-licensed under the source-available Server Side Public License and the Elastic license, while other parts fall under the proprietary Elastic License.

Shay Banon created the precursor to Elasticsearch, called Compass, in 2004.

Elasticsearch can be used to search any kind of document.
It provides scalable search, has near real-time search, and supports multitenancy.

"Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas.

Each node hosts one or more shards and acts as a coordinator to delegate operations to the correct shard(s).
Rebalancing and routing are done automatically".

Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.

Official Website :- https://www.elastic.co/elasticsearch/


Original Link: https://dev.to/rakeshkr2/in-one-minute-elasticsearch-40l0

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To