Create a new index
Delete an index
Insert document into index
Add alias to index
curl -X POST 'http://localhost:9200/_aliases?pretty' -H 'Content-Type: application/json' -d '{"actions":[{"add":{"index":"my_index","alias":"current"}}]}'
Alias users index
curl -X POST 'http://localhost:9200/_aliases?pretty' -H 'Content-Type: application/json' -d '{"actions":[{"add":{"index":"users","alias":"active_users"}}]}'
Search documents in an index
Copy data from one index to another
Restore index from snapshot