Trying to ingest json file in to quickwit. #1359
-
Hi ,
I followed below steps before ingesting data to quickwit :
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 9 replies
-
Hi, you are calling
Is this an error in the docs somewhere? |
Beta Was this translation helpful? Give feedback.
-
@PSeitz , With the attached config.yaml , I am trying to ingest data getting error hackernews-config.yaml Index config file for gh-archive dataset.version: 0 index_id: hackernews doc_mapping: indexing_settings: search_settings: Dummy data set is like |
Beta Was this translation helpful? Give feedback.
-
From your dummy data, we have a json document with We have opened the issue #1328 to ease the dev XP on this, it will be done soon. Meanwhile, you need to convert the string into |
Beta Was this translation helpful? Give feedback.
From your dummy data, we have a json document with
"time":"2006-10-09 12:55:46"
but in your schema, you defined that time wasi64
, hence the error. Quickwit expects here aJSON number
as it does not know how to convert it.We have opened the issue #1328 to ease the dev XP on this, it will be done soon. Meanwhile, you need to convert the string into
i64
yourself :/