Skip to content

Commit

Permalink
fix writer version typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mwc360 committed Nov 5, 2024
1 parent ce3dfeb commit 45e9ce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _posts/2024-11-04-Deletion-Vectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ If you want to enable deletion vectors on an existing table, you can do the foll
```sql
ALTER TABLE your_table SET TBLPROPERTIES ('delta.enableDeletionVectors' = 'true')
```
> ⚠️ Enabling deletion vectors will permanently increase the `minReaderVersion` to 3 and the `minReaderVersion` to 7.
> ⚠️ Enabling deletion vectors will permanently increase the `minReaderVersion` to 3 and the `minWriterVersion` to 7.
# Closing Thoughts
_Merge-on-read_, implemented through **deletion vectors** in Delta Lake, is a crucial feature for optimizing write-heavy workloads that involve deletions and updates. While deletion vectors can significantly reduce write times, they require a thoughtful approach to table maintenance. Regular `OPTIMIZE` and `VACUUM` operations are essential to ensure a balanced approach to performance across reads and writes.
Expand Down

0 comments on commit 45e9ce2

Please sign in to comment.