如何使用 Elasticsearch 的 NEST “.net 客户端”对所有记录进行分页?
How to use the NEST ".net client" for Elasticsearch to paginate through all the records?
我正在尝试使用 C# .net client for Elasticsearch NEST 对所有可用记录进行分页。
我想一次从服务器 5000 获取所有 ID 的列表。所以我得到的第一个请求是 0-5000,下一个请求是 5001-10000,然后是 10001-15000....
看来我应该使用 search_after API 来获取记录,但对如何检索数据感到困惑。
这是我尝试做的,但我觉得我不明白我在做什么以及我如何发出多个请求..
var products = await elasticClient.SearchAsync<Product>(x =>
x.Source(s => s.Includes(se => se.Field(sef => sef.Id))) // all I need back is the "id" field
.Sort(srt => srt.Ascending(p => p.Id)) // we can sort the ids
.SearchAfter(5000, "get list of ids??"); // I have no idea what parameters to provide this method!
);
如何使用 .net 库一次遍历所有可用 ID“5000”ID?
尝试使用 pageNumber 参数:
var products = await elasticClient.SearchAsync<Product>(x =>
x.Source(s => s.Includes(se => se.Field(sef => sef.Id)))
.From(5000*(pageNumber-1))
.Size(5000)
.Sort(srt => srt.Ascending(p => p.Id))
);
我正在尝试使用 C# .net client for Elasticsearch NEST 对所有可用记录进行分页。
我想一次从服务器 5000 获取所有 ID 的列表。所以我得到的第一个请求是 0-5000,下一个请求是 5001-10000,然后是 10001-15000....
看来我应该使用 search_after API 来获取记录,但对如何检索数据感到困惑。
这是我尝试做的,但我觉得我不明白我在做什么以及我如何发出多个请求..
var products = await elasticClient.SearchAsync<Product>(x =>
x.Source(s => s.Includes(se => se.Field(sef => sef.Id))) // all I need back is the "id" field
.Sort(srt => srt.Ascending(p => p.Id)) // we can sort the ids
.SearchAfter(5000, "get list of ids??"); // I have no idea what parameters to provide this method!
);
如何使用 .net 库一次遍历所有可用 ID“5000”ID?
尝试使用 pageNumber 参数:
var products = await elasticClient.SearchAsync<Product>(x =>
x.Source(s => s.Includes(se => se.Field(sef => sef.Id)))
.From(5000*(pageNumber-1))
.Size(5000)
.Sort(srt => srt.Ascending(p => p.Id))
);