Elasticsearch - Mappings and Data Types
Given this mapping with dynamic set to 'strict':
What happens if you index a document with a new field
{"mappings": {"dynamic": "strict", "properties": {"name": {"type": "text"}}}}What happens if you index a document with a new field
age?