0.1.12 • Published 8 years ago
@nteract/commuter-server v0.1.12
ES Operations
Create a New Index
curl -XPOST http://<ES_HOST>/commuter -d @src/resources/commuter.es.mapping.jsonUpdate Alias
curl -XPOST http://<ES_HOST>/_aliases -d '
{
    "actions": [
        { "remove": {
            "alias": "commuter",
            "index": "<OLD_INDEX>"
        }},
        { "add": {
            "alias": "commuter",
            "index": "<NEW_INDEX>"
        }}
    ]
}'Delete Index
curl -XDELETE http://<ES_HOST>/commuter