2019-01-23 编程 删除Elasticsearch文档中的字段 from https://cinhtau.net/2017/09/01/remove-field-from-elasticsearch-document/ 123456789101112131415161718POST /test_index/log/_update_by_query{ "script": { "inline": "ctx._source.remove('source_type')", "lang": "painless" }, "query": { "bool": { "must": [ { "exists": { "field": "source_type" } } ] } }} Newer Nginx中include其他配置文件 Older CDH5 Hive on Spark搭建