I would like to be able to recreate an ElasticSearch index, in production, without any downtime.
With previous versions of Nest (5 and earlier) it was possible to do that by having an alias that points at your original index, creating a new index, updating the alias to point to the new index, and then dropping the original index.
Is it possible to achieve something similar, without downtime, with Nest 7.x? If so, how. If you can provide an example with Object Initializer Syntax, that would be most helpful.