Open/Close Index

edit

The open and close index APIs allow you to close an index, and later on open it. A closed index has almost no overhead on the cluster (except for maintaining its metadata), and is blocked for read/write operations. A closed index can be opened which will then go through the normal recovery process.

Open and close and index by name

edit
var r = this.ConnectedClient.CloseIndex(Test.Default.DefaultIndex);
r = this.ConnectedClient.OpenIndex(Test.Default.DefaultIndex);

Open and close default index

edit
var r = this.ConnectedClient.CloseIndex<ElasticSearchProject>();
r = this.ConnectedClient.OpenIndex<ElasticSearchProject>();