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
#Exemplo 1 | |
GET pessoas_test_v2/_search/?q=estado:MG | |
#Exemplo 2 | |
GET pessoas_test_v2/_search | |
{ | |
"query": { | |
"term": { | |
"estado.original": { | |
"value": "MG" |
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
POST /pessoas_test_v2/_bulk | |
{"index": {}} | |
{"nome": "Abdalla Yussef Tauil Neto", "cidade": "São José do Rio Claro", "formação": "Letras", "estado": "MT", "país": "Brasil", "interesses": ["futebol","society","volei"] } | |
{"index": {}} | |
{"nome": "Abdullah Hassan Akram Fayad", "cidade": "Senhora da Gloria", "formação": "Física", "estado": "MG", "país": "Brasil", "interesses": ["basquete"] } | |
{"index": {}} | |
{"nome": "Abdy Augusto Silva", "cidade": "Tamboril do Piaui", "formação": "Artes Cênicas", "estado": "PI", "país": "Brasil", "interesses": ["futebol","society","volei","voleibol"] } | |
{"index": {}} | |
{"nome": "Abel dos Santos Beserra", "cidade": "Arapongas", "formação": "Artes Cênicas", "estado": "PR", "país": "Brasil", "interesses": [] } | |
{"index": {}} |
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": { |
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
DELETE pessoa_test/_doc/1 |
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 pessoa_test/_doc/1 | |
{ | |
"nome": "Wodson Luiz", | |
"interesses": [ | |
"basquete", | |
"música", | |
"literatura", | |
"churrasco" | |
], | |
"cidade": "São Paulo", |
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
GET pessoa_test/_doc/1 |
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
POST pessoa_test/_doc | |
{ | |
"nome": "João Silva", | |
"interesses": [ | |
"basquete", | |
"música", | |
"literatura" | |
], | |
"cidade": "São Paulo", | |
"formação": "Letras", |
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
version: '3.7' | |
services: | |
elasticsearch: | |
image: docker.elastic.co/elasticsearch/elasticsearch:7.4.2 | |
ports: | |
- "9200:9200" | |
- "9300:9300" | |
environment: | |
discovery.type: "single-node" |