如何在几秒钟内使用Unix时间戳在Druid中建立文档索引

时间:2018-12-01 09:47:09

标签: druid

我正在尝试在timestampspec中以秒为单位使用unix时间戳。但是我很困惑在格式中使用什么。我已经尝试过auto option和millis,但都无法产生预期的结果。

{
  "format":"millis",
  "column":"eventTime"
}

1 个答案:

答案 0 :(得分:0)

您可以使用posix time是Unix时间戳,以秒为单位

  "timestampSpec" : {
    "column" : "timestamp",
    "format" : "posix"
  },

请在此处浏览各种格式 http://druid.io/docs/latest/ingestion/ingestion-spec.html