diff options
author | Borislav Glozman <Borislav.Glozman@amdocs.com> | 2018-09-17 06:08:47 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-17 06:08:47 +0000 |
commit | 27fe5d7490f58a5e53df94b14f4585301ce4fc3f (patch) | |
tree | eb77c8cf44fc210572ecb81e45aefc092f0ddc12 /kubernetes/aai/charts | |
parent | 933bdb7e46432c108dde567b162ac87e5286a797 (diff) | |
parent | 3e4a8962118410fa52f8c782ce509b77db4b649d (diff) |
Merge "Config update to fix whitespaces issue in payload"
Diffstat (limited to 'kubernetes/aai/charts')
-rw-r--r-- | kubernetes/aai/charts/aai-search-data/resources/config/es-payload-translation.json | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/kubernetes/aai/charts/aai-search-data/resources/config/es-payload-translation.json b/kubernetes/aai/charts/aai-search-data/resources/config/es-payload-translation.json index 93888befbc..b44b4ec294 100644 --- a/kubernetes/aai/charts/aai-search-data/resources/config/es-payload-translation.json +++ b/kubernetes/aai/charts/aai-search-data/resources/config/es-payload-translation.json @@ -1,20 +1,16 @@ { "attr-translations": [ { - "from": "\"type\":\"string\",\"index\":\"analyzed\"", - "to": "\"type\":\"text\",\"index\":\"true\"" + "query": "$..[?(@.type=='string' && @.index=='analyzed')]", + "update": {"type": "text", "index": true, "fielddata": true} }, { - "from": "\"type\":\"string\",\"index\":\"not_analyzed\"", - "to": "\"type\":\"keyword\",\"index\":\"true\"" + "query": "$..[?(@.type=='string' && @.index=='not_analyzed')]", + "update": {"type": "keyword", "index": true} }, { - "from": "\"type\":\"string\"", - "to": "\"type\":\"text\"" - }, - { - "from": "searchable", - "to": "index" + "query": "$..[?(@.type=='string' && !@.index)]", + "update": {"type": "text", "fielddata": true} } ] }
\ No newline at end of file |