Forum Discussion
Mismatched minReaderVersion and readerFeatures
- 2 years ago
Hi Anonymous ,
You can take a backup of the table and try to alter the property by running the SQL command below in Spark notebook:
ALTER TABLE <table-identifier> SET TBLPROPERTIES('delta.minReaderVersion' = '1', 'delta.minWriterVersion' = '3')
This might help to fix the issue.But as you said, this looks like a bug since it had been working in previous executions.
I'm getting the same error. Weird thing is, I'm running the same notebook concurrently going through different tables in the same manner and the rest succeeds with no issues except for one and it even occurs during manual runs...
I'm also getting the same error.
- Naveen-0042 years agoFrequent Visitor
I found a temporary fix for the problem: we can simply create a new table and copy the existing table data to the new table.
- scca2 years agoAdvocate III
Yeah, though it's helpful in Dev. It's quite the problem when running a live pipeline and the just comes out of nowhere. Haven't had that problem for a while but it is annoying when it does unless it's a problem solvable by the user.
- Naveen-0042 years agoFrequent Visitor
Yup, I agree.