This message was deleted.
# general
s
This message was deleted.
v
The data loader wizard is having an issue the
__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"}
👍 1
d
it works. thanks a lot