1. Health API
Health Check
|
|
- Green - everything is good (cluster is fully functional)
- Note: When a cluster is red, it will continue to serve search requests from the available shards but you will likely need to fix it ASAP since there are unassigned shards.
- Yellow - all data is available but some replicas are not yet allocated (cluster is fully functional)
- Red - some data is not available for whatever reason (cluster is partially functional)
List Nodes
|
|
2. Indices API
2.1 List
|
|
2.2 Create
|
|
2.3 Delete
|
|
3. Document API
3.1 Query
|
|
have another posts talk about query
3.2 Create
|
|
3.3 Update
|
|
Every document has a _version field
Elasticsearch documents are immutable.
- a new document is created with an incremented _version
- the old doc is marked for deletion
3.4 Delete
|
|