So based off of the docs, since Pinot doesn’t have...
# general
n
So based off of the docs, since Pinot doesn’t have a specific date time format, and dates are converted to either strings, longs, or ints, does this hinder performance in any way? If it does, are there plans to add support for a datetime format?
k
That’s right.. it can be stored in any format.. Strings are not great for performance but int/long primitive are better
👍 1
Can you explain “support for datetime”
Pinot does support datetime but it allows users to dictate how datetime is stored which can be good and bad
n
That makes sense, thank you!