我有一个C#对象,用于将文档索引到Elasticsearch中的现有类型。
该对象有一个DateTime字段,我想使用基于NEST客户端属性的映射来配置映射。我希望将格式配置为DateFormat.basic_date_time_no_millis。我正在跳,这将从日期时间对象中删除毫秒。用作索引文档的类如下所示。
public class DBQueueDepth
{
public string QueueName { get; set; }
public int ProcessedCount { get; set; }
public int NotProcessedCount { get; set; }
public string Environment { get; set; }
[Date(Format = DateFormat.basic_date_time_no_millis)]
public DateTime SampleTimeStamp { get; set; }
}
在Elasticsearch中映射到的类型是;
"dbQueueDepth": {
"properties": {
"environment": {
"type": "text"
},
"notProcessedCount": {
"type": "integer"
},
"processedCount": {
"type": "integer"
},
"queueName": {
"type": "text"
},
"sampleTimeStamp": {
"type": "date",
"format": "date_time_no_millis"
}
}
我的客户端代码是
var node = new Uri("http://localhost:9200");
var settings =
new ConnectionSettings(node).MaximumRetries(10)
.MaxRetryTimeout(new TimeSpan(0, 0, 0, 10))
.DefaultIndex("austin_operational_data")
.InferMappingFor<DBQueueDepth>(i => i.TypeName("dbQueueDepth"));
ElasticClient client = new ElasticClient(settings);
var response = client.IndexMany(rows);
当我尝试索引文档时,收到以下错误。
{index返回400 _index:operational_data _type:dbQueueDepth _id:AV5rqc3g6arLsAmJzpLK _version:0错误:输入:mapper_parsing_exception原因:“无法解析[sampleTimeStamp]”CausedBy: 键入:illegal_argument_exception原因:“格式无效:”2017-09-10T12:00:41.9926558Z“格式错误为”.9926558Z“”}
我是否正确期望NEST客户端根据日期属性中的格式删除毫秒?
InferMappingFor方法是否指示客户端使用C#对象上属性指定的格式?
答案 0 :(得分:2)
您的假设不是完全正确。 format on a date
field控制如何在Elasticsearch中在服务器端解析请求中的日期字符串,即它告诉Elasticsearch期望字符串的格式。
现在,您可以将month.xlsx
与format
结合使用,将JsonConverter
序列化为不会发出毫秒数的格式。但是,我可能会通过从应用程序代码中的DateTime
实例中删除毫秒(可能在属性设置器中)并按原样保留DateTime
和序列化来处理此问题。