2

私は、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'?!
        }
    }
}
4

1 に答える 1

2

1.GeoLocationタイプが古くなっているようです。NEST テストでさえクラスを使用しCustomGeoLocationます。

したがって、Postクラスは次のようになります。

public class Post
{
    public Guid Id { get; set; }
    public string User { get; set; }
    public DateTime CreatedAt { get; set; }
    public string Message { get; set; }
    [ElasticProperty(Type = FieldType.GeoPoint)]
    public Location Location { get; set; }
}

public class Location
{
    public Location(double lat, double lon)
    {
        Lat = lat;
        Lon = lon;
    }

    public double Lat { get; set; }
    public double Lon { get; set; }
}

2. Geo Distance Filterのドキュメントには次のように書かれています。

フィルターでは、関連するフィールドに geo_point タイプを設定する必要があります。

Locationこれが、タイプをに設定した理由ですFieldType.GeoPoint

インデックスのマッピングを忘れずに作成してください。

client.CreateIndex(
    descriptor =>
        descriptor.Index(indexName)
            .AddMapping<Post>(
                m => m.Properties(p => p
                    .GeoPoint(mappingDescriptor => mappingDescriptor.Name(f => f.Location).IndexLatLon()))));

でGeoOptimizeBBox.Indexedlat_lonを使用したいので、オンにしました。GeoDistanceFilter

インデックスの ES マッピング:

{
    "sampleindex" : {
        "mappings" : {
            "post" : {
                "properties" : {
                    "createdAt" : {
                        "type" : "date",
                        "format" : "dateOptionalTime"
                    },
                    "id" : {
                        "type" : "string"
                    },
                    "location" : {
                        "type" : "geo_point",
                        "lat_lon" : true
                    },
                    "message" : {
                        "type" : "string"
                    },
                    "user" : {
                        "type" : "string"
                    }
                }
            }
        }
    }
}

3.これで、このクエリは最終的に機能します

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(500, GeoUnit.Kilometers)
                .Location(37.802774, -122.4478561)
                .Optimize(GeoOptimizeBBox.Indexed)))
    );

お役に立てれば :)

于 2015-03-29T18:43:32.437 に答える