es 數組追加


POST test_index/test_type/1/_update
{
   "script" : {
       "inline": "ctx._source.tags.add(params.new_tag)",
       "params" : {
          "new_tag" : "tag4"
       }
   }
}

 增加字段

awemeuser/_mapping 
{
  "properties": {
    "total_pro_share": {
      "type": "long"
    },
    "total_pro_comment": {
      "type": "long"
    },
    "total_pro_favorite": {
      "type": "long"
    }
  }
}

設置默認值

http://localhost:9200/awemeuser/_update_by_query
{
  "script": {
    "lang": "painless",
    "source": "if (ctx._source.total_pro_share== null) {ctx._source.total_pro_share= 0}"
  }
}

 修改副本數 put

http://localhost:9200/awemeincr202107/_settings
{"number_of_replicas":0}

 


免責聲明!

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



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