Medium severitydata source
Power BI Refresh Error:
ParquetDateTimeExceedLimit
What does this error mean?
A datetime value in the Parquet file exceeds ADF's valid range. Values like 0001-01-01 can fall outside the valid ticks range due to calendar differences.
Common causes
- 1The Parquet file contains datetime values at the boundary of the valid range (e.g., 0001-01-01 00:00:00)
- 2Calendar differences between Julian and proleptic Gregorian calendar representations cause values to fall outside the valid ticks range
How to fix it
- 1Filter out or replace the out-of-range datetime values in the source system before writing to Parquet.
- 2Add a data flow transformation to clamp or replace out-of-range datetime values with a valid default.
- 3Use a string type for the datetime column if preserving the exact original values is important.
Frequently asked questions
Official documentation: https://learn.microsoft.com/en-us/azure/data-factory/connector-troubleshoot-parquet