From f4c419941a48233210f96cd0c29759e10b9afbec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D8=B9=D8=B1=D9=81=D8=A7=D9=86=20=D8=B5=D8=A7=D8=A8=D8=B1?= =?UTF-8?q?=DB=8C=20=7C=20Erfan=20Saberi?= <55283540+erfansaberi@users.noreply.github.com> Date: Sun, 11 May 2025 20:14:04 +0330 Subject: [PATCH 1/2] Fix disabled dynamic mapping description in explicit mapping example --- solutions/search/elasticsearch-basics-quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solutions/search/elasticsearch-basics-quickstart.md b/solutions/search/elasticsearch-basics-quickstart.md index 20ac04dbfe..6e290784bb 100644 --- a/solutions/search/elasticsearch-basics-quickstart.md +++ b/solutions/search/elasticsearch-basics-quickstart.md @@ -326,7 +326,7 @@ PUT /my-explicit-mappings-books } ``` -1. Disables dynamic mapping for the index. Documents containing fields not defined in the mapping will be rejected. +1. Disables dynamic mapping for the index. Fields not defined in the mapping will still be saved in the document, but they won’t be indexed or searchable. 2. The `properties` object defines the fields and their data types for documents in this index. From 0bc25ceacc547f073b588d981241dfed484d3e94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D8=B9=D8=B1=D9=81=D8=A7=D9=86=20=D8=B5=D8=A7=D8=A8=D8=B1?= =?UTF-8?q?=DB=8C=20=7C=20Erfan=20Saberi?= <55283540+erfansaberi@users.noreply.github.com> Date: Wed, 21 May 2025 23:10:38 +0330 Subject: [PATCH 2/2] Update solutions/search/elasticsearch-basics-quickstart.md Co-authored-by: Liam Thompson <32779855+leemthompo@users.noreply.github.com> --- solutions/search/elasticsearch-basics-quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solutions/search/elasticsearch-basics-quickstart.md b/solutions/search/elasticsearch-basics-quickstart.md index 6e290784bb..441d5bbade 100644 --- a/solutions/search/elasticsearch-basics-quickstart.md +++ b/solutions/search/elasticsearch-basics-quickstart.md @@ -326,7 +326,7 @@ PUT /my-explicit-mappings-books } ``` -1. Disables dynamic mapping for the index. Fields not defined in the mapping will still be saved in the document, but they won’t be indexed or searchable. +1. Disables dynamic mapping for the index. Fields not defined in the mapping will still be stored in the document's `_source` field, but they won’t be indexed or searchable. 2. The `properties` object defines the fields and their data types for documents in this index.