Last active
April 3, 2022 20:44
-
-
Save leandrodasilvaalves/eed8552e1e6ddc644705b26deda39e57 to your computer and use it in GitHub Desktop.
Exemplo de Índice com sinônimos no Elastic Search
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
// ELK version | |
// { | |
// "name" : "elk", | |
// "cluster_name" : "elasticsearch", | |
// "cluster_uuid" : "Ke1nBsxySly7JEErHIIZ9w", | |
// "version" : { | |
// "number" : "7.8.0", | |
// "build_flavor" : "default", | |
// "build_type" : "tar", | |
// "build_hash" : "757314695644ea9a1dc2fecd26d1a43856725e65", | |
// "build_date" : "2020-06-14T19:35:50.234439Z", | |
// "build_snapshot" : false, | |
// "lucene_version" : "8.5.1", | |
// "minimum_wire_compatibility_version" : "6.8.0", | |
// "minimum_index_compatibility_version" : "6.0.0-beta1" | |
// }, | |
// "tagline" : "You Know, for Search" | |
// } | |
PUT /pessoas | |
POST /pessoas/_close | |
PUT /pessoas/_settings | |
{ | |
"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", | |
"filtro_de_sinonimos" | |
] | |
} | |
} | |
} | |
} | |
POST /pessoas/_open | |
PUT /pessoas/_mapping | |
{ | |
"properties": { | |
"cidade": { | |
"type": "text", | |
"fields": { | |
"original": { | |
"type": "text", | |
"index": false | |
} | |
}, | |
"index": true, | |
"analyzer": "portuguese" | |
}, | |
"estado": { | |
"type": "text", | |
"index": false | |
}, | |
"formação": { | |
"type": "text", | |
"fields": { | |
"original": { | |
"type": "text", | |
"index": false | |
} | |
}, | |
"index": true, | |
"analyzer": "portuguese" | |
}, | |
"interesses": { | |
"type": "text", | |
"index": true, | |
"analyzer": "portuguese", | |
"search_analyzer": "sinonimos" | |
}, | |
"nome": { | |
"type": "text", | |
"fields": { | |
"original": { | |
"type": "text", | |
"index": false | |
} | |
}, | |
"index": true, | |
"analyzer": "portuguese" | |
}, | |
"país": { | |
"type": "text", | |
"fields": { | |
"original": { | |
"type": "text", | |
"index": false | |
} | |
}, | |
"index": true, | |
"analyzer": "portuguese" | |
} | |
} | |
} | |
POST /pessoas/_doc | |
{ | |
"nome": "João Silva", | |
"interesses": [ | |
"futebol", | |
"música", | |
"literatura" | |
], | |
"cidade": "São Paulo", | |
"formação": "Letras", | |
"estado": "SP", | |
"país": "Brasil" | |
} | |
POST /pessoas/_doc | |
{ | |
"nome": "Maria Silva", | |
"interesses": [ | |
"pintura", | |
"literatura", | |
"teatro" | |
], | |
"cidade": "Diamantina", | |
"formação": "Artes Plásticas", | |
"estado": "MG", | |
"país": "Brasil" | |
} | |
POST /pessoas/_doc | |
{ | |
"nome": "Richard Edward", | |
"interesses": [ | |
"matemática", | |
"física", | |
"música" | |
], | |
"cidade": "Boston", | |
"formação": "Física", | |
"estado": "MA", | |
"país": "Estados Unidos" | |
} | |
POST /pessoas/_doc | |
{ | |
"nome": "Patrick von Steppat", | |
"interesses": [ | |
"computação", | |
"culinária", | |
"cinema" | |
], | |
"cidade": "Rio de Janeiro", | |
"formação": "Gastronomia", | |
"estado": "RJ", | |
"país": "Brasil" | |
} | |
GET /pessoas/_search?q=arte | |
GET /pessoas/_analyze | |
{ | |
"analyzer": "sinonimos", | |
"text": "futebol" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment