Dear colleagues.
do you know the maximum possible number of fields for index ?
In my case i have over 200 from the fluentd configured but in Kibana indexes i have Fields (45) only visible . Is there some limitation for the number of Fields ?
Also dynamic mapping used.
"mappings" : {
"_default_" : {
"_all" : {"enabled" : true, "omit_norms" : true},
"dynamic_templates" : [ {
"ID" : {
"match" : "ID",
"mapping" : {
"type" : "string", "index" : "not_analyzed"
}
}
},
{
"Name" : {
"match" : "Name",
"mapping" : {
"type" : "string", "index" : "not_analyzed"
}
}
},
{
"ip" : {
"match" : "ip",
"mapping" : {
"type" : "ip", "index" : "not_analyzed"
}
}
},
{
"string_fields" : {
"match" : "*",
"mapping" : {
"type" : "float", "index" : "not_analyzed"
}
}
}],
"properties" : {
"@timestamp" : { "type" : "date" }
}
}
}
}
}
}