Elasticsearch的索引映射不起作用

时间:2019-05-26 06:06:23

标签: elasticsearch

我无法使用以下映射为我的数据进行映射。在elasticsearch索引中,“整数输入”字段显示为“文本”。 以下是json模板文件和logstash配置文件

的部分

template.json

{
        "mappings":{
                "_doc":{
                        "properties":{
                                "textinput":{
                                        "type":"text"
                                },
                                "name":{
                                        "type":"text"
                                },
                                "integerinput":{
                                        "type":"integer"
                                }
                        }
                }
        }
}

logstash配置文件:

output {
    elasticsearch {
        ssl => true
        manage_template => true
        user => 'elastic'
        password => '******'
        hosts => "https://elasticip:port"
        cacert => '/path to certificate file'
        index => "template-mapping-index"
        template => "/path to template/template.json"
}
}

有人在我误服的地方帮我

0 个答案:

没有答案