私の最初のSO投稿!文字列フィールドに Stempel アナライザー (ポーランド語の ES アナライザー) を設定しようとしています。私はPUTリクエストを介してそれを行うことができます:
{
"doc": {
"_source": {
"enabled": false
},
"properties": {
"file": {
"type": "attachment",
**"analyzer": "polish"**,
"fields": {
"content": {
"type": "string",
"term_vector": "with_positions_offsets"
}
}
}
}
}
}
そしてそれはうまくいきます。NESTで同じことをしようとしています。
[ElasticProperty(Name = "_content", TermVector = TermVectorOption.WithPositionsOffsets, Analyzer = "polish")]
public string Content { get; set; }
動作していません:
client.CreateIndex(index, b => b.AddMapping<DocInES>(m => m
.MapFromAttributes()
.Properties(props => props
.String(s => s
.Name(p => p.File.Content)
.Analyzer("polish")
))));
私が使用しているとき
var result = client.Analyze(a => a.Index("doc").Analyzer("polish").Text("...text..."));
正常に動作するため、.NET はこのアナライザーを検出しています。ES 2.1.1 を使用しています。& ネスト 1.7.1
EDIT:私が調べたところ、NESTは.NETで作成されたAttachmentクラスの属性のマッピングを行っていないようです。Document クラスの Map Attributes を行います
[ElasticType(Name = "docInES")]
public class DocInES {
public int InstitutionId { get; set;}
public int DocumentId { get; set; }
[ElasticProperty(Store = true, Analyzer = "polish")]
public string Title { get; set; }
[ElasticProperty(Type = FieldType.Attachment)]
public Attachment File { get; set; }
}
ただし、Attachment クラスではありません。
public class Attachment {
[ElasticProperty(Name = "content2", Store = true)]
public string Content { get; set; }
[ElasticProperty(Name = "content_type2")]
public string ContentType { get; set; }
[ElasticProperty(Name = "name2", Analyzer = "english")]
public string Name { get; set; }
}