WARNING: Version 5.x has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Create index
editCreate index
editThe create index API allows to instantiate an index. Elasticsearch provides support for multiple indices, including executing operations across several indices. Each index created can have specific settings associated with it.
When adding settings strip the index.
prefix. This applies to settings found in the
Index Module documentation.
Simple example
editvar settings = new IndexSettings(); settings.NumberOfReplicas = 1; settings.NumberOfShards = 5; settings.Settings.Add("merge.policy.merge_factor","10"); settings.Settings.Add("search.slowlog.threshold.fetch.warn", "1s"); client.CreateIndex(c => c .Index("myindexname") .InitializeUsing(settings) );
Create index with settings and mappings in one go fluently
editclient.CreateIndex("myindexname", c => c .NumberOfReplicas(0) .NumberOfShards(1) .Settings(s=>s .Add("merge.policy.merge_factor","10") .Add("search.slowlog.threshold.fetch.warn", "1s") ) .AddMapping<ElasticSearchProject>(m => m.MapFromAttributes()) .AddMapping<Person>(m => m.MapFromAttributes()) );