小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

ElasticSearch之CURL操作

 TIANSHIBWG 2021-05-25
  • CURL的操作
    curl是利用URL語法在命令行方式下工作的開源文件傳輸工具,使用curl可以簡單實現(xiàn)常見的get/post請求。簡單的認(rèn)為是可以在命令行下面訪問url的一個工具。在centos的默認(rèn)庫里面是有curl工具的,如果沒有請yum安裝即可。
  • 命令格式:
curl -X指定http請求的方法(如HEAD GET POST PUT DELETE)-d  '指定要傳輸?shù)臄?shù)據(jù)'

例子:

建立索引庫company(PUT和POST都可以,索引庫名必須小寫):

curl -XPUT 'http://localhost:9200/company'

索引庫名稱必須要全部小寫,不能以下劃線開頭,也不能包含逗號

創(chuàng)建索引,其中employee是type,1是document,-d是指定要傳輸?shù)臄?shù)據(jù)(遵循JSON格式):

curl -XPOST http://localhost:9200/company/employee/1 -d 
'{
"first_name" : "John",
"last_name" : "Smith",
"age" : 25,
"about" : "I love to go rock climbing",
"interests": [ "sports", "music" ]
}'

創(chuàng)建索引

a.put創(chuàng)建
curl -XPUT http://localhost:9200/shb01/student/1 -d '{"name":"jack","age":30,"info":"hello elasticsearch"}'

返回:{"_index":"shb01","_type":"student","_id":"1","_version":1,"created":true}
執(zhí)行put后有返回值
_index索引名稱
_type類型名
_version版本號
created:true表示是新創(chuàng)建的。
上面的命令每執(zhí)行一次version就會加1,-XPUT必須制定id。

b.post創(chuàng)建
curl -XPOST http://localhost:9200/shb01/student -d'{"name":"tom","age":21,"info":"tom"}'

返回:{"_index":"shb01","_type":"student","_id":"AVadzuNgxskBS1Rg2tdp","_version":1,"created":true}

http://127.0.0.1:9200/_cat/health?v  #查看es集群狀態(tài) 
http://127.0.0.1:9200/_cat/nodes?v #集群節(jié)點健康查看
curl -XGET '127.0.0.1:9200/_cat/indices?v&pretty' #查詢所有索引,pretty:格式化

查詢返回最近10條

curl -XPOST 'localhost:9200/logstash-zhifubao-2018.09.18/_search?pretty' -d '{"query": { "match_all": {} },"from": 10,"size": 10}'

查詢索引狀態(tài)

curl -XGET http://localhost:9200/logstash-zhifubao-2018.08.15/_status

查詢某一個索引

curl -XGET http://localhost:9200/logstash-zhifubao-2018.08.15/message/0ea1b2df-caa4-457c-8cc1-294f5e9284c7/_search?pretty

根據(jù)business_no查詢,多個條件用逗號拼接

curl -XGET http://localhost:9200/logstash-zhifubao-2018.08.15/_search?q=message:0ea1b2df-caa4-457c-8cc1-294f5e9284c7

根據(jù)business_no查詢,只返回特定字段

curl -XGET http://localhost:9200/logstash-zhifubao-2018.08.15/_search?q=message:0ea1b2df-caa4-457c-8cc1-294f5e9284c7?_source=message

查詢集群狀態(tài)

Curl –XGET http://localhost:9200/_cluster/health?pretty
http://localhost:9200/_cluster/health?pretty

多索引,多類型查詢,分頁查詢,超時

Curl:curl -XGET http://localhost:9200/shb01,shb02/stu,tea/_search?pretty
curl -XGET http://localhost:9200/_all/stu,tea/_search?pretty

分頁

curl -XGET http://localhost:9200/shb01/stu/_search?size=2&from=0

更新部分字段

crul –XPUT http:localhost:9200/shb01/student/1/_update?version=1
–d '{“doc”:{“name”:”updatename”}

根據(jù)id刪除

curl -XDELETE http://localhost:9200/shb01/student/AVad05EExskBS1Rg2tdq

刪除所有的索引庫中名稱為tom的文檔

curl -XDELETE http://localhost:9200/_all/_query?q=name:tom

批處理

  • a.在/usr/local/下新建t.txt文件,文件內(nèi)容為
{"index":{"_index":"shb01","_type":"student","_id":"1"}}
{"name":"st01","age":"10","info":"st01"}
{"create":{"_index":"shb100","_type":"student","_id":"2"}}
{"name":"tea01","age":"10","info":"tea01"}
{"delete":{"_index":"shb01","_type":"student","_id":"AVadzuNgxskBS1Rg2tdp"}
{"update":{"_index":"shb02","_type":"tea","_id":"1"}}
{"doc":{"name":"zszszszs"}}
  • b.執(zhí)行批處理命令,關(guān)鍵字_bulk
curl -XPUThttp://localhost:9200/_bulk --data-binary @/usr/local/t

_cluster系列

查詢設(shè)置集群狀態(tài)

curl  -XGET localhost:9200/_cluster/health?pretty=true
curl -XGET localhost:9200/_cluster/stats?pretty=true  # 顯示集群系統(tǒng)信息,包括CPU JVM等等 
curl -XGET localhost:9200/_cluster/pending_tasks?pretty=true  #獲取集群堆積的任務(wù)

pretty=true表示格式化輸出
level=indices 表示顯示索引狀態(tài)
level=shards 表示顯示分片信息

索引參數(shù)相關(guān)

URL 說明

  • /index/_search 不解釋
  • /_aliases 獲取或操作索引的別名
  • /index/
  • /index/type/ 創(chuàng)建或操作類型
    /index/_mapping 創(chuàng)建或操作mapping
  • /index/_settings 創(chuàng)建或操作設(shè)置(number_of_shards是不可更改的)
  • /index/_open 打開被關(guān)閉的索引
  • /index/_close 關(guān)閉索引
  • /index/_refresh 刷新索引(使新加內(nèi)容對搜索可見)
  • /index/_flush
    刷新索引
    將變動提交到lucene索引文件中
    并清空elasticsearch的transaction log,
    與refresh的區(qū)別需要繼續(xù)研究
  • /index/_optimize 優(yōu)化segement,個人認(rèn)為主要是對segement進(jìn)行合并
  • /index/_status 獲得索引的狀態(tài)信息
  • /index/_segments 獲得索引的segments的狀態(tài)信息
  • /index/_explain 不執(zhí)行實際搜索,而返回解釋信息
  • /index/_analyze 不執(zhí)行實際搜索,根據(jù)輸入的參數(shù)進(jìn)行文本分析
  • /index/type/id 操作指定文檔,不解釋
  • /index/type/id/_create 創(chuàng)建一個文檔,如果該文件已經(jīng)存在,則返回失敗
  • /index/type/id/_update 更新一個文件,如果改文件不存在,則返回失敗

集群參數(shù)相關(guān)

URL 說明

  • /_cluster/nodes 獲得集群中的節(jié)點列表和信息
  • /_cluster/health 獲得集群信息
  • /_cluster/state 獲得集群里的所有信息(集群信息、節(jié)點信息、mapping信息等)

Nodes參數(shù)相關(guān)

URL 說明

  • /_nodes/process 我主要看file descriptor 這個信息
  • /_nodes/process/stats 統(tǒng)計信息(內(nèi)存、CPU能)
  • /_nodes/jvm 獲得各節(jié)點的虛擬機(jī)統(tǒng)計和配置信息
  • /_nodes/jvm/stats 更詳細(xì)的虛擬機(jī)信息
  • /_nodes/http 獲得各個節(jié)點的http信息(如ip地址)
  • /_nodes/http/stats 獲得各個節(jié)點處理http請求的統(tǒng)計情況
  • /_nodes/thread_pool
    獲得各種類型的線程池
    (elasticsearch分別對不同的操作提供不同的線程池)的配置信息
  • /_nodes/thread_pool/stats 獲得各種類型的線程池的統(tǒng)計信息

以上這些操作和可以通過如

  • /_nodes/${nodeId}/jvm/stats
  • /_nodes/${nodeip}/jvm/stats
  • /_nodes/${nodeattribute}/jvm/stats
    的形式針對指定節(jié)點的操作。

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多