aboutsummaryrefslogtreecommitdiffstats
path: root/charts/aai-search-data/resources/config/analysis-config.json
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@linuxfoundation.org>2019-04-22 11:57:18 -0700
committerJessica Wagantall <jwagantall@linuxfoundation.org>2019-04-22 11:58:36 -0700
commit9b34a8a4d357fc5a03875f99244f48bdd8b2d03e (patch)
treedbabc5e56188f200913bcefb75424febaabe9952 /charts/aai-search-data/resources/config/analysis-config.json
parent9a427329607433c038f9a8fec8d866f354881234 (diff)
parent201670e70e53a3a9b7e2e8536e8e6719a8ebbab8 (diff)
OOM code transfer for AAI
Transfer code from oom/kubernetes/aai into the aai/oom tech team repo. Change-Id: I7bcd43ff9acbc12ae36c95e3ebcee567fb7572cf Issue-ID: CIMAN-250 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
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..5fc135d
--- /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