summaryrefslogtreecommitdiffstats
path: root/kubernetes/pomba/charts/pomba-search-data/resources/config/analysis-config.json
diff options
context:
space:
mode:
authorMandeep Khinda <Mandeep.Khinda@amdocs.com>2018-08-29 19:11:41 +0000
committerGerrit Code Review <gerrit@onap.org>2018-08-29 19:11:41 +0000
commit55e351e7f20c6f8b8a183dac7a2fbad85bfcfd85 (patch)
tree498d64faabc64a25c270cd00e61a1bbc4fd157c4 /kubernetes/pomba/charts/pomba-search-data/resources/config/analysis-config.json
parentf518374148e940c92fefbcf4acf5d24c48e9bdaf (diff)
parent417b3b46c64f965bed72793b3572ee89b73b22e6 (diff)
Merge "Add Search Data Service to POMBA OOM"
Diffstat (limited to 'kubernetes/pomba/charts/pomba-search-data/resources/config/analysis-config.json')
-rw-r--r--kubernetes/pomba/charts/pomba-search-data/resources/config/analysis-config.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/kubernetes/pomba/charts/pomba-search-data/resources/config/analysis-config.json b/kubernetes/pomba/charts/pomba-search-data/resources/config/analysis-config.json
new file mode 100644
index 0000000000..dce0e40b98
--- /dev/null
+++ b/kubernetes/pomba/charts/pomba-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