美文网首页
ES index配置总结

ES index配置总结

作者: OhBonsai | 来源:发表于2019-01-25 16:11 被阅读0次

Template

  1. String不分析, 开启_all字段, 关闭时间自动发现
{
        "template": "*",
        "mappings": {
            "_default_": {
                "_source": {"enabled": true},
                "_all": {"enabled": true},
                "date_detection": false,
                "dynamic_templates": [
                    {
                        "string": {
                            "mapping": {
                                "index": "not_analyzed",
                                "type": "string"
                            },
                            "match_mapping_type": "string"
                        }
                    }
                ]
            }
        },
        "aliases": {}
}


相关文章

网友评论

      本文标题:ES index配置总结

      本文链接:https://www.haomeiwen.com/subject/qmxvjqtx.html