This message was deleted.
# troubleshooting
s
This message was deleted.
s
Try adding a transformation that casts it as long. Here are the docs on that.
👍 1
g
Since those numbers are decimal, you'd need to load them as
double
rather than
long
(
long
can only hold whole numbers; decimals can't be loaded and turn into either null or default value of zero)
👍 1
r
thanks @Gian Merlino - this fixed the issue. Also good to know options in
transformSpec
are there any plans for being able to supply parser options beyond those already supported? https://druid.apache.org/docs/latest/ingestion/data-formats.html#csv https://opencsv.sourceforge.net/apidocs/com/opencsv/CSVParser.html
g
no current plans that i am aware of, but you could always make a pull request adding a new feature!
r
ok thanks (however doing PR would mean i'd have to (re)learn java! 😅)