我有以下C#模型:
[ElasticType(Name = "myType")]
public class MyType
{
...
[ElasticProperty(Name = "ElasticId")]
[DataMember(Name = "ElasticId")]
public string ElasticId { get; set; }
...
[ElasticProperty(Name = "DateToBeUsed", Type = FieldType.Date, DateFormat = "date_hour_minute_second_millis")]
public string DateToBeUsed { get; set; }
...
}
“date_hour_minute_second_millis”对应于以下格式:yyyy-MM-dd'T'HH:mm:ss.SSS (http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/mapping-date-format.html)
使用“map”方法使用Nest完成映射ES并对应于:
"mappings": {
"myType": {
"properties": {
...,
"ElasticId": {
"type": "string"
},
...,
"DateToBeUsed": {
"type": "date",
"format": "date_hour_minute_second_millis"
},
...
}
}
}
我在此索引中插入了一个文档:
"_source": {
...,
"ElasticId": "2",
...,
"DateToBeUsed": "2012-05-21T09:51:34.073",
...
}
我的问题是当我想通过Nest检索这个对象时。
DateToBeUsed的值始终使用以下格式进行格式化:MM / dd / yyyy HH:mm:ss (例如:05/21/2012 09:51:34)
(使用sense,值格式正确。)
1°)这是正常的吗?
我需要检索与我给ES相同的日期格式。 (我认为使用与映射中描述的格式相同的格式应该是正常的)
2°)是否有“干净”的解决方案来解决这个问题? (在检索文档后重新格式化日期不是“干净”的解决方案......)
感谢您的回答! 再见。
答案 0 :(得分:2)
我已尝试使用以下代码重现您所看到的内容,但正在Get
调用中按预期返回日期值:
string indexName = "so-27927069";
// --- create index ---
client.CreateIndex(cid => cid.Index(indexName));
Console.WriteLine("created index");
// --- define map ---
client.Map<MyType>(m => m
.Index(indexName)
.Type("myType")
.MapFromAttributes());
Console.WriteLine("set mapping");
// ---- index -----
client.Index<MyType>(
new MyType
{
DateToBeUsed = new DateTime(2012, 5, 21, 9, 51, 34, 73)
.ToString("yyyy-MM-ddThh:mm:ss.fff"),
ElasticId = "2"
},
i => i
.Index(indexName)
.Type("myType")
.Id(2)
);
Console.WriteLine("doc indexed");
// ---- get -----
var doc = client.Get<MyType>(i => i
.Index(indexName)
.Type("myType")
.Id(2)
);
Console.WriteLine();
Console.WriteLine("doc.Source.DateToBeUsed: ");
Console.WriteLine(doc.Source.DateToBeUsed);
Console.WriteLine();
Console.WriteLine("doc.RequestInformation.ResponseRaw: ");
Console.WriteLine(Encoding.UTF8.GetString(doc.RequestInformation.ResponseRaw));
我将以下结果视为输出:
created index
set mapping
doc indexed
doc.Source.DateToBeUsed:
2012-05-21T09:51:34.073
doc.RequestInformation.ResponseRaw:
{"_index":"so-27927069","_type":"myType","_id":"2","_version":1,"found":true,"_source":{
"ElasticId": "2",
"DateToBeUsed": "2012-05-21T09:51:34.073"
}}
(通过Fiddler观看流量,我发现ResponseRaw
值与Get
请求响应的有效负载之间存在完全匹配。)
我在Elasticsearch 1.5.2版和NEST 1.6.0版上。 (也许你所看到的问题在过渡期间的某个时候已得到修复......)