The crawler seem not to add any new files. So I investigated and found below warning message on all profiles:
Can't find stored field name to check existing filenames in path
[/some/path]. Please set store: true on field [file.filename]
I currently run updated master
branch. I have tried to look for it generically as it is ES-specific and came up with this:
PUT /myindex/bla/_mapping
{
"properties": {
"file.filename": {
"type": "keyword",
"store" : true
}
}
}
But it gives back:
{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "Mapper for [file.filename] conflicts with existing mapping in other types:\n[mapper [file.filename] has different [store] values]"
}
],
"type": "illegal_argument_exception",
"reason": "Mapper for [file.filename] conflicts with existing mapping in other types:\n[mapper [file.filename] has different [store] values]"
},
"status": 400
}
What can I do to fix this?