嵌套/elasticsearch.netversion:5.6.5
ElasticSearchversion:5.4.3
我们正在尝试使用lowlevelclient从索引中获取结果。我们正在使用下面的 SearchAsync
应用程序编程接口
var searchDescriptor = new SearchDescriptor<MyType>()
.Type("mytype")
.Index("myindex")
.Query(....)
.Aggregation(ag => ag.Terms(... Aggregation(ag1 => ag1.Min(...TopHits(...)))));
var memoryStream = new MemoryStream();
_client.Serializer.Serialize(searchDescriptor, memoryStream);
var response = await _client.LowLevel.SearchAsync<byte[]>(memoryStream.ToArray()).ConfigureAwait(false);
//_client - instance of Nest.ElasticClient
//Next Step - Deserialize the response
这也给了我来自其他索引的结果(来自不同索引的结果的组合),我的反序列化正在中断。客户端正在忽略类型和索引名以及调用post /_search
api而不是post /myindex/mytype/_search
论ElasticSearch
注:
我们需要调用一个较低级别的客户机,因为我们正在使用一个定制的反序列化程序来提高性能
这里有什么问题?
1条答案
按热度按时间mbskvtky1#
找到了解决方法
这个
SearchAsync<>()
方法重载了方法_client.LowLevel.SearchAsync<T>(string indexName, string typeName, T t)
传递索引名和类型名将缩小到该特定索引的搜索范围。但问题仍然存在,为什么它不从
SearchDescriptor
对象。