druid 按照时间查询数据注意的坑

1、时间字段是 “__time” 注意这个是双下划线
这儿你写入的时间字段属性名,这儿是固定的。而且是UTC时区
2、查询sql 的时候这么写 是有问题的
{
"query":"SELECT * FROM user_session_path where __time > '2018-07-02' and __time < '2018-07-03' limit 10 "
}
必须这么写 ,按照时间戳要带上的啊
{
"query":"SELECT * FROM user_session_path where __time > '2018-07-02 00:00:00' and __time < '2018-07-03 00:00:00' limit 10 "
}

你可能感兴趣的:(druid 按照时间查询数据注意的坑)