私は、ElasticSearch を利用する .Net ベースのプロジェクトで NEST を使用することについて深く掘り下げてきましたが、GeoDistance クエリが結果を返さなかったことは、私を悩ませ続けていることです。
単純な「*」クエリの応答をデバッグし、検索結果の .Documents を確認すると、すべてのドキュメント インスタンスの経度値が 0.0 になりますが、緯度が正しい値です。
これは必要最小限の ES サーバーであり (ダウンロードして実行)、何も (再) 構成されていません.. FacetFlow でホストされているものと同じです。
バージョンはElasticsearch.Netが1.4.3、NESTも1.4.3で、ElasticSearch自体は1.4.4です。
ここに欠けているものはありますか、それとももっと正確に言えば、ここに欠けているものはありますか?
サンプル コードは次のようになります (以下で使用される GeoLocation クラスはNest.GeoLocationクラスです)。
using System;
using System.Linq;
using Nest;
namespace NestPlayground
{
public class Post
{
public Guid Id { get; set; }
public string User { get; set; }
public DateTime CreatedAt { get; set; }
public string Message { get; set; }
public GeoLocation Location { get; set; }
}
class Program
{
static void Main(string[] args)
{
var indexName = "sampleindex";
var uri = new Uri("<elasticsearch url>");
var settings = new ConnectionSettings(uri).SetDefaultIndex(indexName);
var client = new ElasticClient(settings);
client.DeleteIndex(indexName);
var post = new Post
{
Id = Guid.NewGuid(),
User = "Some User",
CreatedAt = DateTime.UtcNow,
Message = "Some Sample Message",
Location = new GeoLocation(37.809860, -122.476995)
};
client.Index(post);
client.Refresh();
// Execute a search using the connection from above.
var result = client.Search<Post>(s => s
.Index(indexName)
.Query(queryDescriptor => queryDescriptor.QueryString(queryStringQueryDescriptor => queryStringQueryDescriptor.Query("*")))
//.Filter(filterDescriptor => filterDescriptor.GeoDistance(post1 => post1.Location, geoDistanceFilterDescriptor => geoDistanceFilterDescriptor
// .Distance(50, GeoUnit.Kilometers)
// .Location(Lat: 37.802774, Lon: -122.4478561)
// .Optimize(GeoOptimizeBBox.Indexed)))
);
// this DOES return the just created/indexed document, but its .Longitude / result.Documents.First().Location.Longtitude property is always '0'?!
}
}
}