-
When target is parquet file Sling writes timestamp columns with ns precision timestamp("ns"). I'd like to change that to timestamp("ms"). How to do that? |
Beta Was this translation helpful? Give feedback.
Answered by
flarco
Feb 22, 2024
Replies: 1 comment 2 replies
-
Not yet implemented. Will do for next release. Curious, how can |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
k, next release should support it by defining the column type in
source.options.columns
:timestamp(3)
timestamp(6)
timestamp(9)
.timestamp
will default totimestamp(9)
for parquet.