最近研究es的日期匹配问题,知道es的底层是存储Unix时间戳,并且录入的时间是可以有时区的信息的。
目前数据存储有三个数据,两个是0时区数据,一个是东八区数据:
{
{
"date": "2015-01-01T12:10:30Z"
}
},
{
{
"date": "2015-01-01T12:10:30"
}
},
{
{
"date": "2015-01-01T12:10:30+08:00"
}
}
当用没带时区信息的语句查询时,三条记录都可以查询出来:
{
"query": {
"range" : {
"date" : {
"gte": "2015-01-01 01:10:30",
"lte": "2015-01-01 11:10:30",
"format": "yyyy-MM-dd hh:mm:ss||yyyy"
}
}
}
}
当用带有时区的查询时,就可以精确查询:(只查询出一条)
{
"query": {
"range" : {
"date" : {
"gte": "2015-01-01T01:10:30",
"lte": "2015-01-01T11:10:30"
}
}
}
}
想请问es内部对时间的匹配规则是什么样的?用什么数据结构?
答案:如果没带时区信息的都会转换为0时区数据(长整形),上面的问题中,使用了hh:mm:ss来进行格式化数据,hh会把时间格式化到pm时段,数据就变大了
es 按照时间查询的几种格式
GET m-2fg-day/_search
{
"size": 0,
"query": {
"bool": {
"filter": [
{
"term": {
"2fg_year": "2017"
}
},
{
"term": {
"2fg_month": "09"
}
},
{
"term": {
"2fg_day": "25"
}
}
]
}
},
"aggs": {
"uncertain_reason": {
"terms": {
"field": "uncertain_reason.keyword",
"size": 10
}
}
}
}
GET gather-034-20180302/_search
{
"query": {
"bool": {
"must": [
{
"range": {
"report_time": {
"gte": "2018-03-02T09:39:12.000Z",
"lte": "2018-03-02T13:00:00.000Z"
}
}
},
{
"term": {
"itv_account": {
"value": "AD87218665@ITV4"
}
}
}
]
}
}
}
GET gather-000/_search
{
"size": 0,
"query": {
"range": {
"@timestamp": {
"gte": "2017-08-30T00:00:00",
"lte": "2017-08-30T23:59:59",
"time_zone": "+08:00"
}
}
}
}
GET gather-034-20180316/_search
{
"_source": {
"include": [
"report_time",
"flr"
]
},
"query": {
"bool": {
"must": [
{
"range": {
"flr": {
"gte": 30
}
}
},
{
"term": {
"area": {
"value": "SC_CD"
}
}
},
{
"range": {
"report_time": {
"gte": "now-30m"
}
}
}
]
}
},
"aggs": {
"1": {
"terms": {
"field": "itv_account",
"size": 10
},
"aggs": {
"2": {
"avg": {
"field": "flr"
}
}
}
}
},
"sort": [
{
"report_time": {
"order": "desc"
}
}
]
}