Hi,
got a little tired of memory issues and figured I'd try enabling doc_value and see if this helps (eventually as indexes are created).
This is for a central log ELK stack, kibana3 & 4. ES 1.7.
Should I add it in more / less places in the template?
The template (pastebin: elasticsearch-template.json from logstash with doc_value - Pastebin.com ):
{
"template" : "logstash-",
"aliases" : {
"alias1" : {},
"dcachebilling" : {
"filter" : {
"term" : {
"type" : "dcache_billing"
}
}
}
},
"settings" : {
"index.refresh_interval" : "5s",
"number_of_shards" : 4
},
"mappings" : {
"default" : {
"_all" : {"enabled" : true, "omit_norms" : true, "doc_value" : true},
"dynamic_templates" : [ {
"message_field" : {
"match" : "message",
"match_mapping_type" : "string",
"mapping" : {
"type" : "string", "index" : "analyzed", "omit_norms" : true, "doc_value" : true
}
}
}, {
"string_fields" : {
"match" : "",
"match_mapping_type" : "string",
"mapping" : {
"type" : "string", "index" : "analyzed", "omit_norms" : true, "doc_value" : true,
"fields" : {
"raw" : {"type": "string", "index" : "not_analyzed", "ignore_above" : 256, "doc_value" : true}
}
}
}
} ],
"properties" : {
"@version": { "type": "string", "index": "not_analyzed" },
"type": { "type": "string", "index": "not_analyzed" },
"geoip" : {
"type" : "object",
"dynamic": true,
"path": "full",
"properties" : {
"location" : { "type" : "geo_point" }
}
}
}
}
}
}
// mart