我的数据的时间戳类似于mm/dd/yyyy hh:mm:ss
。我使用以下规范进行索引:
"timestampSpec" : {
"format" : "mm/dd/yyyy",
"column" : "createddate"
}
提供错误Caused by: com.metamx.common.parsers.ParseException: Unparseable timestamp found!
。
我们如何处理这类数据?
答案 0 :(得分:0)
Druid时间戳规范可以是iso,millis,posix,auto或任何Joda时间格式。这是乔达时间pattern/style
的链接参考-http://druid.io/docs/latest/ingestion/ingestion-spec.html
答案 1 :(得分:0)
使用以下任何一种: “ timestampSpec”:{ “ format”:“ iso”, “ column”:“ createddate” }
或
“ timestampSpec”:{ “ format”:“ auto”, “ column”:“ createddate” }