Да, сортировка индекса аналогична любым другим настройкам и может быть указана в шаблоне индекса :
PUT _template/mytemplate
{
"index_patterns": ["myindex"],
"aliases": {},
"settings" : {
"index" : {
"number_of_shards": 2,
"number_of_replicas": 1,
"sort.field" : "date",
"sort.order" : "desc"
}
},
"mappings": {
"properties": {
"date": {
"type": "date"
}
}
}
}