Last active
January 2, 2019 20:32
-
-
Save benwtrent/2e3ea1e87746f58f557898869fd95e77 to your computer and use it in GitHub Desktop.
typeless reindex being called against indexes with `doc` mapping
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PUT _template/template_test | |
{ | |
"index_patterns": ["test*"], | |
"settings": { | |
"number_of_shards": 1 | |
}, | |
"mappings": { | |
"doc": { | |
"dynamic_templates": [ | |
{ | |
"strings": { | |
"match_mapping_type": "string", | |
"mapping": { | |
"type": "keyword" | |
} | |
} | |
} | |
], | |
"properties": { | |
"type": { | |
"type": "keyword" | |
} | |
} | |
} | |
} | |
} | |
POST test1/doc | |
{ | |
"other": "bar" | |
} | |
POST test1/doc | |
{ | |
"type": "foo" | |
} | |
POST _reindex | |
{ | |
"source": { | |
"index": "test1" | |
}, | |
"dest": { | |
"index": "test2" | |
} | |
} | |
> { | |
"took": 215, | |
"timed_out": false, | |
"total": 2, | |
"updated": 0, | |
"created": 1, | |
"deleted": 0, | |
"batches": 1, | |
"version_conflicts": 0, | |
"noops": 0, | |
"retries": { | |
"bulk": 0, | |
"search": 0 | |
}, | |
"throttled_millis": 0, | |
"requests_per_second": -1, | |
"throttled_until_millis": 0, | |
"failures": [ | |
{ | |
"index": "test2", | |
"type": "_doc", | |
"id": "x79EEGgB0R88jZo7MC16", | |
"cause": { | |
"type": "mapper_parsing_exception", | |
"reason": "Root mapping definition has unsupported parameters: [doc : {properties={other={type=keyword}}}]" | |
}, | |
"status": 400 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment