My class looks like that:
@Document(indexName = "a")
@Mapping(mappingPath = "mapping-a.json")
public class A {
@Id
private String id;
What I would like to do is to instead of just creating and using index a here I would like to create some index and use alias (with some config) for it. Like in ES documentation example from Elasticsearch documentation:
The only solution that I can think of is to just "manually" create index on startup, but I was hoping for some built in feature in Spring Data Elasticsearch.
