1、所有文章優先發表在個人部落格上:檢視集群健康狀態2、後續如果有修改的話,可能忘記更新到csdn了,給你帶來不便,抱歉。
get /_cat/health?v
新增資料
blog index索引相當於資料庫的庫
article type相當於資料庫的表
das13das1d id
如果沒有 index 和 type 會自動建立
put /index/type/id
eg :
put /blog/article/das13das1d
檢視資料
// 檢視單一資料
get /index/type/id
eg :
get /blog/article/das13das1d
// 檢視index 下面得資料
get /index/_search
eg:get /test/_search
// 檢視index/type 下面得資料
get /index/type/_search
eg:get /test/_doc/_search
刪除資料
delete /index/type/id
eg:delete /blog/article/256
刪除索引
delete /index
eg:delete /blog
檢視全部索引
get _cat/indices
elasticserach節點角色
master節點主要負責集群中索引的建立 刪除以及資料的rebalance等操作。master不負責資料的索引和檢索,所以負載較輕。當master節點失聯或者掛掉的時候,es集群會自動從其他master節點擊舉出乙個leader data節點主要負責集群中資料的索引和檢索,一般壓力比較大。建議和ma...
const相關,指標相關,陣列相關
include include head.h int a 3,c 2 const int b a b 8 error b c right const用來修飾指標所指向的變數,還是指標 可以修改指標指向位址,但不能直接修改指向內容 int const b a b 8 right p error con...
自相關互相關卷積的 自相關與互相關
自相關 autocorrelation 也叫序列相關,是乙個訊號與其自身在不同時間點的互相關。非正式地來說,自相關是對同一訊號在不同時間的兩次觀察,通過對比來評判兩者的相似程度。自相關函式就是訊號x t 和它的時移訊號x t 的乘積平均值。它是時移變數 的函式。這是從書上抄來的話,到底是什麼意思呢?...