在Elasticsearch中将字符串的默认映射更改为"未分析"

Sag*_*nha 35 elasticsearch logstash logstash-grok elasticsearch-mapping

在我的系统中,数据的插入总是通过logstash通过csv文件完成.我从未预先定义映射.但每当我输入一个字符串,它总是被认为是analyzed,作为结果的条目一样hello I am Sinha被分为hello,I,am,Sinha.无论如何我可以更改elasticsearch的默认/动态映射,以便所有字符串,无论索引如何,无论类型如何都被认为是not analyzed?或者有没有办法在.conf文件中设置它?说我的conf文件看起来像

input {  
      file {
          path => "/home/sagnik/work/logstash-1.4.2/bin/promosms_dec15.csv"
          type => "promosms_dec15"
          start_position => "beginning"
          sincedb_path => "/dev/null"
      }
}
filter {

    csv {
        columns => ["Comm_Plan","Queue_Booking","Order_Reference","Multi_Ordertype"]
        separator => ","
    }  
    ruby {
          code => "event['Generation_Date'] = Date.parse(event['Generation_Date']);"
    }

}
output {  
    elasticsearch { 
        action => "index"
        host => "localhost"
        index => "promosms-%{+dd.MM.YYYY}"
        workers => 1
    }
}
Run Code Online (Sandbox Code Playgroud)

我想要所有的字符串not analyzed,我不介意它是将所有未来数据插入到elasticsearch中的默认设置

Sag*_*nha 28

只需创建一个模板.跑

curl -XPUT localhost:9200/_template/template_1 -d '{
    "template": "*",
    "settings": {
        "index.refresh_interval": "5s"
    },
    "mappings": {
        "_default_": {
            "_all": {
                "enabled": true
            },
            "dynamic_templates": [
                {
                    "string_fields": {
                        "match": "*",
                        "match_mapping_type": "string",
                        "mapping": {
                            "index": "not_analyzed",
                            "omit_norms": true,
                            "type": "string"
                        }
                    }
                }
            ],
            "properties": {
                "@version": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "geoip": {
                    "type": "object",
                    "dynamic": true,
                    "path": "full",
                    "properties": {
                        "location": {
                            "type": "geo_point"
                        }
                    }
                }
            }
        }
    }
}'
Run Code Online (Sandbox Code Playgroud)

  • 这个*到底是做什么的?它是如何工作的*?你能详细说明这个模板是什么以及它如何应用于这个问题吗? (9认同)

Ban*_*jer 20

您可以查询.raw字段的版本.这是在Logstash 1.3.1中添加的:

我们提供的logstash索引模板为您索引的每个字段添加了".raw"字段.这些".raw"字段由logstash设置为"not_analyzed",因此不会进行分析或标记化 - 我们的原始值按原样使用!

因此,如果调用了您的字段foo,您将查询foo.raw返回not_analyzed(不分隔分隔符)版本.

  • 填充foo字段时,foo.raw字段为空.我不明白 (3认同)

Mag*_*äck 13

从Logstash发行版中复制lib/logstash/outputs/elasticsearch/elasticsearch-template.json(可能安装为/opt/logstash/lib/logstash/outputs/elasticsearch/elasticsearch-template.json),通过替换来修改它

"dynamic_templates" : [ {
  "string_fields" : {
    "match" : "*",
    "match_mapping_type" : "string",
    "mapping" : {
      "type" : "string", "index" : "analyzed", "omit_norms" : true,
      "fields" : {
        "raw" : {"type": "string", "index" : "not_analyzed", "ignore_above" : 256}
      }
    }
  }
} ],
Run Code Online (Sandbox Code Playgroud)

"dynamic_templates" : [ {
  "string_fields" : {
    "match" : "*",
    "match_mapping_type" : "string",
    "mapping" : {
      "type" : "string", "index" : "not_analyzed", "omit_norms" : true
    }
  }
} ],
Run Code Online (Sandbox Code Playgroud)

并指向template您输出插件到您修改的文件:

output {
  elasticsearch {
    ...
    template => "/path/to/my-elasticsearch-template.json"
  }
}
Run Code Online (Sandbox Code Playgroud)

您仍然可以覆盖特定字段的此默认值.