Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

[learn ES series]-2. Understand the important basic concepts in ElasticSearch

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

Cluster (cluster) and node (node)

A node is part of a cluster.

Index (Index), type (Type), document (Document) index: the collection type of a document with the same attribute: an index can define one or more types, and the document must belong to a type document: the document is the basic data unit Shard and Replica that can be indexed.

Fragmentation (shard)

Each index in ElasticSearch has multiple shards, and each shard is an Lucene index.

Function:

1. If the amount of data in an index is very large, it will cause great pressure on the hard disk and the bottleneck of search efficiency. Multiple fragments can be used to share the pressure.

two。 Fragmentation also allows users to scale horizontally and split and distribute operations, which can improve the efficiency of search and other operations.

Backup (replica): make a copy of a slice.

Function:

1. If the primary shard fails or has a problem, its backup shard can replace its work, thus improving the availability of ElasticSearch.

two。 You can also perform search operations through the backup fragments to share the search pressure.

Using RDMS thinking to understand ElasticSearch

Index: equivalent to database database

Type: equivalent to data table table

Document: equivalent to a record record in a table

RESTful API of ElasticSearch

ElasticSearch provides a simple and consistent set of RESTful API. The format is as follows

Http://:///

The commonly used HTTP verb GET/PUST/POST/DELETE

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report