PUT _index_template/students-template
{
"index_patterns": [
"students-*"
],
"template": {
"settings": {
"number_of_shards": 1,
"number_of_replicas": 0
}
}
}GET _index_template/students-templatePUT students-2022GET students-2022GET _cat/indices?vDELETE students-2022DELETE _index_template/students-templatePUT _component_template/mysettings
{
"template": {
"settings": {
"number_of_shards": 1,
"number_of_replicas": 0
}
}
}GET _component_template/mysettingsPUT _index_template/students-template
{
"index_patterns": [
"students-*"
],
"composed_of": [
"mysettings"
]
}GET _index_template/students-templatePUT students-2022GET students-2022PUT students-2022/_doc/1
{
"student-id": "1001",
"name": "John Smith",
"course": "Elastic Certified Engineer"
}GET students-2022/_doc/1# Cleanup if you wish to
DELETE students-2022
DELETE _index_template/students-template
DELETE _component_template/mysettings