当前位置:   article > 正文

es-删除字段-实测_es 删除字段

es 删除字段

es字段一旦创建是无法删除的,本案的方案是复制新老索引的方法

一、背景

现有索引 index1,待删除字段field1和extendMap.field2,es版本6.3.2

二、步骤

1、删除index1中的filed1和extendMap.field2两个字段的数据

  1. POST index1/_update_by_query
  2. {
  3. "query":{
  4. "bool":{
  5. "must":[
  6. {
  7. "exists":{
  8. "field":"field1"
  9. }
  10. }
  11. ]
  12. }
  13. },
  14. "script": "ctx._source.remove('field1')"
  15. }
  16. POST index1/_update_by_query
  17. {
  18. "query":{
  19. "bool":{
  20. "must":[
  21. {
  22. "exists":{
  23. "field":"extendMap.field2"
  24. }
  25. }
  26. ]
  27. }
  28. },
  29. "script": "ctx._source.extendMap.remove('field2')"
  30. }

2、新建index2,map中不要有上述待删除字段

3、拷贝index1到index2

  1. POST _reindex
  2. {
  3. "source": {
  4. "index": "index1"
  5. },
  6. "dest": {
  7. "index": "index2"
  8. }
  9. }

4、删除index1

DELETE index1

5、新建index1,map中不要有上述待删除字段

6、拷贝index2到index1

  1. POST _reindex
  2. {
  3. "source": {
  4. "index": "index2"
  5. },
  6. "dest": {
  7. "index": "index1"
  8. }
  9. }

7、删除index2

DELETE index2

 完成

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/699074
推荐阅读
相关标签
  

闽ICP备14008679号