Forum Discussion
CommitFailedError:Writer features must be specified for writerversion >= 7, please specify: Timest**
- 1 year ago
Hi fabric_1 ,
In this scenario i suggest you to raise a support ticket here. so, that they can assit you in addressing the issue you are facing. please follow below link on how to raise a support ticket:
How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn
Thanks,
Prashanth Are
MS Fabric community support
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly and give Kudos if helped you resolve your query
Hi fabric_1,
Delta Lake protocol Writer Version 7+ introduces new features that require explicit declaration of feature usage. One such feature is TimestampWithoutTimezone.
Even though you've localized the timestamp to remove timezone, Delta Lake still expects you to declare that you're using timezone-less timestamps explicitly in the write_features parameter.
If you are writing timestamp columns frequently and want to future-proof your pipeline:
Always set write_features = ["TimestampWithoutTimezone"] when using writer version ≥ 7.
Thanks,
Prashanth Are