Skip to content

Instantly share code, notes, and snippets.

@yogeshsr
Created March 10, 2018 13:13
Show Gist options
  • Save yogeshsr/25152dcacce1391231c0e14eb20b2784 to your computer and use it in GitHub Desktop.
Save yogeshsr/25152dcacce1391231c0e14eb20b2784 to your computer and use it in GitHub Desktop.
Partial coupons index mapping
{
"dynamic": false,
"properties": {
"id": {
"type": "keyword"
},
"sponsor": {
"type": "text",
"term_vector": "yes",
"analyzer": "coupon_analyzer_basic",
"search_analyzer": "coupon_search_analyzer_basic",
"boost": 13,
"fields": {
"ngram": {
"type": "text",
"term_vector": "yes",
"analyzer": "coupon_analyzer_ngram",
"search_analyzer": "coupon_analyzer_basic",
"boost": 3
},
"edge_ngram": {
"type": "text",
"term_vector": "yes",
"analyzer": "coupon_analyzer_edge",
"search_analyzer": "coupon_analyzer_basic",
"boost": 7
}
}
},
"title": {
"type": "text",
"term_vector": "yes",
"analyzer": "coupon_analyzer_basic",
"search_analyzer": "coupon_search_analyzer_basic",
"boost": 11,
"fields": {
"edge_ngram": {
"type": "text",
"term_vector": "yes",
"analyzer": "coupon_analyzer_edge",
"search_analyzer": "coupon_analyzer_basic",
"boost": 9
}
}
},
"description": {
"type": "text",
"term_vector": "yes",
"analyzer": "coupon_analyzer_basic",
"search_analyzer": "coupon_search_analyzer_basic",
"boost": 5
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment