MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Como fazer mapeamento ao indexar no elasticsearch


Excluir o índice existente
curl -XDELETE "http://hostname:9200/index/type"

Excluir o índice de configuração do rio existente
curl -XDELETE "http://hostname:9200/_river"

Criar mapeamento para índice
curl -XPUT "http://hostname:9200/index/type/_mapping" -d'
{
"allnews": {
    "properties": {
        "category": {
            "type": "string"
        },
        "description": {
            "type": "string"
        },
        "link": {
            "type": "string"
        },
        "state": {
            "type": "string",
            "index" : "not_analyzed"
        },
        "title": {
            "type": "string"
        }
    }
}
}'

Após essas etapas, coloque a configuração do plugin do rio sync mongodb para elasticsearch.

Espero que ajude..!