This message was deleted.
# general
s
This message was deleted.
r
The issue is that druid is losing the timezone info? I don't really know if druid can store the time zone in the "primary key" (__time/primary indexing column) maybe you can try to store it again in another dimension column, to retain the data as is, with the -05:00
👍 1
2023-09-18T015426.949Z is indeed the same time as 2023-09-17T205426.949154-05:00 but in UTC After ingestion, you can get the data back in any time zone you want
👍 1
the only time this could be a deal break is if you are doing daily aggregate/rollup, then I recommend you to use Hourly aggregate if you can ignore the weird timezone's
f
Dang, good point. I completely missed the UTC time conversion. Thanks for the help!
Also was able to just convert it at query time with the time_format function.
ex. (TIME_FORMAT(__time,'yyyy-MM-dd HHmmss','America/Chicago'))
r
or the web console
f
Nice, thanks for that! Super helpful!