aboutsummaryrefslogtreecommitdiffstats
path: root/charts/aai-search-data/resources/config/analysis-config.json
diff options
context:
space:
mode:
authorkj <keren.joseph@amdocs.com>2018-03-19 15:07:44 +0200
committerkj <keren.joseph@amdocs.com>2018-03-27 19:48:13 +0300
commit6a8ce801a6afe0a26694b02532773b1938e2dd70 (patch)
tree6d1a2f391545a18f967a59c0b2f7a21887baaf5c /charts/aai-search-data/resources/config/analysis-config.json
parente3b6f914d6daf91ca110060c2b8696ff04b82773 (diff)
Add standardized helm chart for aai
Issue-ID: OOM-734 Change-Id: I6b1a85017d79b92afcae44cf823ab000a10ce4be Signed-off-by: kj <keren.joseph@amdocs.com>
Diffstat (limited to 'charts/aai-search-data/resources/config/analysis-config.json')
-rw-r--r--charts/aai-search-data/resources/config/analysis-config.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/charts/aai-search-data/resources/config/analysis-config.json b/charts/aai-search-data/resources/config/analysis-config.json
new file mode 100644
index 0000000..f98ea37
--- /dev/null
+++ b/charts/aai-search-data/resources/config/analysis-config.json
@@ -0,0 +1,32 @@
+[
+ {
+ "name": "whitespace_analyzer",
+ "description": "A standard whitespace analyzer.",
+ "behaviours": [
+ "Tokenize the text using white space characters as delimeters.",
+ "Convert all characters to lower case.",
+ "Convert all alphanumeric and symbolic Unicode characters above the first 127 ASCII characters into their ASCII equivalents."
+ ],
+ "tokenizer": "whitespace",
+ "filters": [
+ "lowercase",
+ "asciifolding"
+ ]
+ },
+ {
+ "name": "ngram_analyzer",
+ "description": "An analyzer which performs ngram filtering on the data stream.",
+ "behaviours": [
+ "Tokenize the text using white space characters as delimeters.",
+ "Convert all characters to lower case.",
+ "Convert all alphanumeric and symbolic Unicode characters above the first 127 ASCII characters into their ASCII equivalents.",
+ "Apply ngram filtering using the following values for minimum and maximum size in codepoints of a single n-gram: minimum = 1, maximum = 2."
+ ],
+ "tokenizer": "whitespace",
+ "filters": [
+ "lowercase",
+ "asciifolding",
+ "ngram_filter"
+ ]
+ }
+] \ No newline at end of file