Elasticsearch专题精讲—— 操作文档 ——读写文档
Posted 左扬(你们的胃叫胃,孤的叫胃PLUS)
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Elasticsearch专题精讲—— 操作文档 ——读写文档相关的知识,希望对你有一定的参考价值。
操作文档 ——读写文档
1、Introduction
https://www.elastic.co/guide/en/elasticsearch/reference/8.8/docs-replication.html
Each index in Elasticsearch is divided into shards and each shard can have multiple copies. These copies are known as a replication group and must be kept in sync when documents are added or removed. If we fail to do so, reading from one copy will result in very different results than reading from another. The process of keeping the shard copies in sync and serving reads from them is what we call the data replication model.
在Elasticsearch,每个索引都被划分为分片,每个分片可以有多个副本。这些副本称为 replication group(复制组),在添加或删除文档时必须保持同步。如果我们不这样做,从一个副本阅读将导致非常不同的结果,而不是从另一个。保持分片、副本同步并从中读取数据的过程称为 data replication model(数据复制模型)。
第三百六十二节,Python分布式爬虫打造搜索引擎Scrapy精讲—elasticsearch(搜索引擎)基本的索引和文档CRUD操作
第三百六十二节,Python分布式爬虫打造搜索引擎Scrapy精讲—elasticsearch(搜索引擎)基本的索引和文档CRUD操作
elasticsearch(搜索引擎)基本的索引和文档CRUD操作
也就是基本的索引和文档、增、删、改、查、操作
注意:以下操作都是在kibana里操作的
以上是关于Elasticsearch专题精讲—— 操作文档 ——读写文档的主要内容,如果未能解决你的问题,请参考以下文章
第三百六十二节,Python分布式爬虫打造搜索引擎Scrapy精讲—elasticsearch(搜索引擎)基本的索引和文档CRUD操作
四十一 Python分布式爬虫打造搜索引擎Scrapy精讲—elasticsearch(搜索引擎)基本的索引和文档CRUD操作增删改查
四十六 Python分布式爬虫打造搜索引擎Scrapy精讲—elasticsearch(搜索引擎)scrapy写入数据到elasticsearch中
四十二 Python分布式爬虫打造搜索引擎Scrapy精讲—elasticsearch(搜索引擎)的mget和bulk批量操作