MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Comment faire la cartographie lors de l'indexation dans elasticsearch

Supprimer l'index existant

curl -XDELETE "http://hostname:9200/index/type"

Supprimer l'index de configuration River existant

curl -XDELETE "http://hostname:9200/_river"

Créer un mappage vers l'index

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"
        }
    }
}
}'

Après ces étapes, placez la synchronisation de la configuration du plugin river mongodb sur elasticsearch.

J'espère que ça aide.. !