MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come eseguire la mappatura durante l'indicizzazione in elasticsearch

Elimina l'indice esistente

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

Elimina l'indice di configurazione del fiume esistente

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

Crea mappatura da indicizzare

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

Dopo questi passaggi, metti il ​​plugin river config sync mongodb su elasticsearch.

SPERO che aiuta..!