Last active
June 8, 2022 16:34
-
-
Save wodsonluiz/2df2c20550f62fed0ec82c1a279b784c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PUT /pessoas_test_v2 | |
{ | |
"settings": { | |
"index": { | |
"number_of_shards": 3, | |
"number_of_replicas": 0 | |
}, | |
"analysis": { | |
"filter": { | |
"portuguese_stop": { | |
"type": "stop", | |
"stopwords": "_portuguese_" | |
}, | |
"portuguese_stemmer": { | |
"type": "stemmer", | |
"language": "light_portuguese" | |
}, | |
"filtro_de_sinonimos": { | |
"type": "synonym", | |
"synonyms": [ | |
"futebol => futebol,society", | |
"society => society,futebol", | |
"volei,voleibol,volleyball", | |
"esport => esport,futebol,society,volei,basquet", | |
"exat => exat,matematic,fisic,computaca", | |
"arte => arte,pintur,teatr,music,cinem" | |
] | |
} | |
}, | |
"analyzer": { | |
"sinonimos": { | |
"tokenizer": "standard", | |
"filter": [ | |
"lowercase", | |
"portuguese_stop", | |
"portuguese_stemmer" | |
] | |
} | |
} | |
} | |
}, | |
"mappings": { | |
"properties": { | |
"cidade": { | |
"type": "text", | |
"fields": { | |
"original": { | |
"type": "keyword", | |
"index": true | |
} | |
}, | |
"index": true, | |
"analyzer": "portuguese" | |
}, | |
"estado": { | |
"type": "text", | |
"index": true, | |
"fields": { | |
"original": { | |
"type": "keyword", | |
"index": true | |
} | |
}, | |
"analyzer": "portuguese" | |
}, | |
"formação": { | |
"type": "text", | |
"fields": { | |
"original": { | |
"type": "keyword", | |
"index": true | |
} | |
}, | |
"index": true, | |
"analyzer": "portuguese" | |
}, | |
"interesses": { | |
"type": "text", | |
"index": true, | |
"fields": { | |
"original": { | |
"type": "keyword", | |
"index": true | |
} | |
}, | |
"analyzer": "portuguese" | |
}, | |
"nome": { | |
"type": "text", | |
"index": true, | |
"analyzer": "portuguese" | |
}, | |
"país": { | |
"type": "text", | |
"fields": { | |
"original": { | |
"type": "keyword", | |
"index": true | |
} | |
}, | |
"index": true, | |
"analyzer": "portuguese" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment