我对ElasticSearch很新。我试图重新索引索引以重命名它。我使用的是NEST API v5.4。 我看到了这个例子:
var reindex =
elasticClient.Reindex<Customer>(r =>
r.FromIndex("customers-v1")
.ToIndex("customers-v2")
.Query(q => q.MatchAll())
.Scroll("10s")
.CreateIndex(i =>
i.AddMapping<Customer>(m =>
m.Properties(p =>
p.String(n => n.Name(name => name.Zipcode).Index(FieldIndexOption.not_analyzed))))));
来源:http://thomasardal.com/elasticsearch-migrations-with-c-and-nest/
但是,我无法使用NEST 5.4重现这一点。我认为这是2.4版本。 我检查了ElasticSearch的重大变化,并尝试使用以下方法重新编制索引:
来源:https://www.elastic.co/guide/en/elasticsearch/client/net-api/current/nest-breaking-changes.html
public method Nest.ReindexDescriptor..ctor Declaration changed (Breaking)
2.x: public .ctor(IndexName from, IndexName to) 5.x: public .ctor()
var reindex = new client.Reindex(oldIndexName, newIndexName);
但这也行不通。 我也搜索文档,但我没有在c#上找到任何代码,只是JSON 来源:https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-reindex.html)
有人能举例说明如何在C#上使用NEST 5.4重新索引吗?
提前致谢! :slight_smile:
答案 0 :(得分:1)
在搜索了2天之后,我找到了重新索引索引的解决方案。为了解决未来的问题,我将提供我的解决方案。
Nest版本 - 5.4
var reindex = client.Reindex<object>(r => r
.BackPressureFactor(10)
// ScrollAll - Scroll all the documents of the index and store it for 1minute
.ScrollAll("1m", 2, s => s
.Search(ss => ss
.Index(oldIndexName)
.AllTypes())
// there needs to be some degree of parallelism for this to work
.MaxDegreeOfParallelism(4))
.CreateIndex(c => c
// New index here
.Index(newIndexName)
.Settings(
// settings goes here)
.Mappings(
// mappings goes here))
.BulkAll(b => b
// New index here!
.Index(newIndexName)
.Size(100)
.MaxDegreeOfParallelism(2)
.RefreshOnCompleted()));
ReIndex方法返回一个冷 IObservable ,你必须在其上调用 .Subscribe()来启动所有内容。
因此,您需要将其添加到您的代码中:
var o = new ReindexObserver(
onError: (e) => { //do something },
onCompleted: () => { //do something });
reindex.Subscribe(o);
检查此内容的有用链接是: