aboutsummaryrefslogtreecommitdiffstats
path: root/charts/aai-search-data/resources/config/dynamic-custom-template.json
diff options
context:
space:
mode:
authorEdwin Lawrance <Edwin.Lawrance@amdocs.com>2018-07-16 19:55:15 +0100
committerAlexis de Talhouƫt <alexis.de_talhouet@bell.ca>2018-08-14 14:54:59 +0000
commit75b973f47001bd27d68b2dec5f4f76b9189b59ac (patch)
treeeda33a439a1a672d171f492f039228486da79957 /charts/aai-search-data/resources/config/dynamic-custom-template.json
parent1996ca0d6cdbee6484d1490735b7ff566f3aa7b3 (diff)
ES payload translation & dynamic template config
Configs for ElasticSearch 6.1.2 Payload translation is to comply new version Dynamic template is for mapping "string" typed dynamic fields Change-Id: I3735fb20da2b9e9fcc99dbf9322a6063ab1cfe1e Issue-ID: AAI-1376 Signed-off-by: Edwin Lawrance <Edwin.Lawrance@amdocs.com>
Diffstat (limited to 'charts/aai-search-data/resources/config/dynamic-custom-template.json')
-rw-r--r--charts/aai-search-data/resources/config/dynamic-custom-template.json12
1 files changed, 12 insertions, 0 deletions
diff --git a/charts/aai-search-data/resources/config/dynamic-custom-template.json b/charts/aai-search-data/resources/config/dynamic-custom-template.json
new file mode 100644
index 0000000..2dac8f7
--- /dev/null
+++ b/charts/aai-search-data/resources/config/dynamic-custom-template.json
@@ -0,0 +1,12 @@
+"dynamic_templates":[
+ {
+ "strings":{
+ "match_mapping_type":"string",
+ "match": "*",
+ "mapping":{
+ "type":"text",
+ "fielddata":true
+ }
+ }
+ }
+],