Slackbot
06/19/2023, 11:45 AMVadim
06/19/2023, 11:48 PM__time
column in your input data because it is formatted as iso
(2023-06-16T10:33:01
) rather than millis (1686936781000
) as would be natural if this data was exported from Druid you have 3 options:
1. Rename the __time
column in your data to literally anything else
2. Change the type of the __time
column in your data to millis
3. Write the spec by hand, it will still work if your timestampSpec
as {"column": "__time","format": "iso"}
Duc Ạnh Nguyen
06/19/2023, 11:51 PM