head與postman基於索引的基本操作 for elasticsearch
head與postman基於索引的基本操作 for elasticsearch
1.可以閱讀完下面兩篇部落格再來閱讀該文件
安裝elasticsearch到linux伺服器
安裝es-header外掛
2.es-head的複合查詢,請求的連線為我們安裝了es的虛擬機器IP,這個返回的資料和我們在瀏覽器上獲取的一致
3.使用postman訪問es伺服器:請求安裝了es的虛擬機器IP返回的資料一致
4.通過es-head建立索引
5.建立完成可以在概覽中檢視
6.叢集健康值查詢,再次建立索引庫併為他們建立對應的副本
我們加上副本一共有15個分片,但是有5個副本未被正式啟用所以這邊顯示,一共15個分片,能夠正常使用的有10個
green
所有的主分片和副本分片都已分配。你的叢集是 100% 可用的。
yellow
所有的主分片已經分片了,但至少還有一個副本是缺失的。不會有資料丟失,所以搜尋結果依然是完整的。不過,你的高可用性在某種程度上被弱化。如果 更多的 分片消失,你就會丟資料了。把 yellow 想象成一個需要及時調查的警告。
red
至少一個主分片(以及它的全部副本)都在缺失中。這意味著你在缺少資料:搜尋只能返回部分資料,而分配到這個分片上的寫入請求會返回一個異常。
官網文件:傳送門
green/yellow/red 狀態是一個概覽你的叢集並瞭解眼下正在發生什麼的好辦法。剩下來的指標給你列出來叢集的狀態概要:
7.通過PostMan獲取es的叢集健康狀況
GET 192.168.1.117:9200/_cluster/health
8.通過PostMan刪除es索引庫
DELETE 192.168.1.117:9200/index_123(要刪除的索引名稱)
9.通過PostMan刪除es索引庫
PUT 192.168.1.117:9200/index_temp(索引庫名稱)
{
"settings": {
"index": {
"number_of_shards": "3", // 分片數
"number_of_replicas": "0" // 副本數
}
}
}
10.通過PostMan查詢某個索引庫的資訊
GET 192.168.1.117:9200/index_temp(你想要查詢索引庫的名稱)
11.通過PostMan查詢 es 中所有索引庫的資訊
GET 192.168.1.117:9200/_cat/indices?v
相關文章
- ElasticSearch基本操作Elasticsearch
- ElasticSearch - 基本操作Elasticsearch
- Windows下ElasticSearch的Head安裝及基本使用WindowsElasticsearch
- Elasticsearch6.2.4-利用head外掛建立索引Elasticsearch索引
- 高效管理 Elasticsearch 中基於時間的索引Elasticsearch索引
- Elasticsearch CRUD基本操作Elasticsearch
- ElasticSearch生命週期管理-索引策略配置與操作Elasticsearch索引
- Docker基本操作基於WindowsDockerWindows
- (2)Elasticsearch基本操作整理Elasticsearch
- elasticsearch(二)---基本資料操作Elasticsearch
- docker安裝elasticsearch與es-headDockerElasticsearch
- elasticsearch 基礎操作Elasticsearch
- ElasticSearch的Java Api基本操作入門指南ElasticsearchJavaAPI
- MySQL系列:索引基本操作(4)MySql索引
- ElasticSearch 獲取es資訊以及索引操作Elasticsearch索引
- Elasticsearch聚合學習之一:基本操作Elasticsearch
- elasticsearch-head 筆記Elasticsearch筆記
- 【Elasticsearch】Elasticsearch 索引模板Elasticsearch索引
- elasticsearch(三)----索引建立與刪除Elasticsearch索引
- ElasticSearch(八)Elasticsearch-head 連線不上Elasticsearch的原因和解決方案Elasticsearch
- ElasticSearch安裝Head外掛Elasticsearch
- elasticSearch head 查詢報錯Elasticsearch
- Elasticsearch索引。Elasticsearch索引
- 『與善仁』Appium基礎 — 21、元素的基本操作APP
- 基於函式的索引函式索引
- ElasticSearch 索引 VS MySQL 索引Elasticsearch索引MySql
- git與git-flow安裝(基於蘋果Mac OSX系統)以及基本操作Git蘋果Mac
- Elasticsearch之索引模板index template與索引別名index aliasElasticsearch索引Index
- Elasticsearch精進之路:elasticsearch-head外掛使用教程Elasticsearch
- Elasticsearch5中安裝Elasticsearch-head外掛ElasticsearchH5
- mysql 索引的基礎操作彙總MySql索引
- 剖析 Elasticsearch 的索引原理Elasticsearch索引
- 安裝elasticsearch-head外掛Elasticsearch
- Elasticsearch Head外掛使用小結Elasticsearch
- elasticsearch-head離線安裝Elasticsearch
- 『政善治』Postman工具 — 11、Postman中對Cookie的操作PostmanCookie
- 『政善治』Postman工具 — 10、Postman中對Cookie的操作PostmanCookie
- elasticsearch索引原理Elasticsearch索引