File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
docs/reference/elasticsearch/mapping-reference Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,9 @@ of official GA features.
218218
219219
220220Synthetic source may sort ` geo_point ` fields (first by latitude and then
221- longitude) and reduces them to their stored precision. For example:
221+ longitude) and reduces them to their stored precision. Additionally, unlike most
222+ types, arrays of ` geo_point ` fields will not store their source even when
223+ ` synthetic_source_keep ` is set to ` arrays ` . For example:
222224
223225$$$ synthetic-source-geo-point-example $$$
224226
@@ -229,7 +231,8 @@ PUT idx
229231 "index": {
230232 "mapping": {
231233 "source": {
232- "mode": "synthetic"
234+ "mode": "synthetic",
235+ "synthetic_source_keep": "arrays"
233236 }
234237 }
235238 }
You can’t perform that action at this time.
0 commit comments