influxdb在windows操作系统上不能正常使用tz()语句的开释

近期在使用influxdb,在查询(http query)时发现返回的时间是UTC时间,按照DOCUMENT增加tz('Asia/Shanghai')语句后得到返回ERR: error parsing query: unable to find time zone Asia/Shanghai,查遍了所有中文网站,最多的都只是翻译了官网文档,无奈查询英文网站,遂释然:

>
>
> select * from testmeasurement order by time desc limit 10 tz('Asia/Shanghai')
ERR: error parsing query: unable to find time zone Asia/Shanghai
>

原来influxdb在non-unix系统(例如windows)上不正常使用tz()语句,原因是influxdb底层是使用的go语言,go语言在windows操作系统上不能正确获得本地时区数据库(The time zone database needed by LoadLocation may not be present on all systems,especially non-Unix systems),要解决这个BUG的唯一方法是--->install go。

SO,释然了吧,在后端自己处理时区问题吧~骚年~

 

相关原文

https://dotnetplusplus.com/2017/10/18/time-zone-and-group-by-day-in-influxdb/

https://community.influxdata.com/t/supports-timezone-in-influxdb/1291/6

你可能感兴趣的:(influxdb在windows操作系统上不能正常使用tz()语句的开释)