Skip to content

Instantly share code, notes, and snippets.

@toff63
Created January 13, 2017 23:29
Show Gist options
  • Save toff63/eed51572126e6a27c71ebc61ddce4a05 to your computer and use it in GitHub Desktop.
Save toff63/eed51572126e6a27c71ebc61ddce4a05 to your computer and use it in GitHub Desktop.
curl -X PUT localhost:9200/customer/external/1?pretty -d '{"name": "John Doe"}'

Create alias in 2.2:

curl -XPOST 'http://localhost:9200/_aliases' -d '{"actions" : [{ "add" : { "index" : "customer", "alias" : "people" } }]}'

Create alias in 5.1:

curl -XPOST 'http://localhost:9200/_aliases' -d '{"actions" : [{ "add" : { "index" : "customer", "alias" : "people" } }]}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment