ES常見的語句


全覆蓋修改

  • url: http://url:port/index/type/id

  • method:PUT

  • body

{
  
    "id": "46",
    "fileId": "ad6643000e0d6f0801f9af65413ce093",
    "type": "TRAN_SESD",
    "status": "DOING",
    "createdTime": 1565318242000,
    "updatedTime": 1565323396000

}

部分字段修改

  • url: http://url:port/index/type/id/_update

  • method:POST

  • body

{
  "doc": {
    "status": "DOING"
  }
}

根據條件刪除

  • url: http://url:port/index/type/_delete_by_query
  • method: POST
  • body
{
  "query": {
    "match": {
      "fileId": "ad6643000e0d6f0801f9af65413ce093"
    }
  }
}

根據id 刪除

  • url: http://url:port/index/type/id
  • method: DELETE
  • body

查看文檔

  • url: http://url:port/index/type/id
  • method: GET
  • body

自定義id新增文檔

  • url: http://url:port/index/type/id
  • method:PUT
  • body
{
  
    "id": "46",
    "fileId": "ad6643000e0d6f0801f9af65413ce093",
    "type": "TRAN_SESD",
    "status": "DOING",
    "createdTime": 1565318242000,
    "updatedTime": 1565323396000

}

非自定義id新增文檔

  • url: http://url:port/index/type
  • method:POST
  • body
{
  
    "id": "46",
    "fileId": "ad6643000e0d6f0801f9af65413ce093",
    "type": "TRAN_SESD",
    "status": "DOING",
    "createdTime": 1565318242000,
    "updatedTime": 1565323396000

}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM