Skip to content

Commit

Permalink
update upper bound of last bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvarya-db committed Dec 12, 2024
1 parent 9ab720a commit 08e0f14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PROTOCOL.md
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ The histogram bins correspond to the following ranges:
- Bin 6: [100000, 999999] (files with 100,000-999,999 deleted records)
- Bin 7: [1000000, 9999999] (files with 1,000,000-9,999,999 deleted records)
- Bin 8: [10000000, 2147483646] (files with 10,000,000 to 2147483646 (i.e. Int.MaxValue-1 in Java) deleted records)
- Bin 9: [2147483647, 9,223,372,036,854,775,807] (files with 2147483647 or more deleted records)
- Bin 9: [2147483647, ∞) (files with 2147483647 or more deleted records)

This histogram allows analyzing the distribution of deleted records across files in a Delta table, which can be useful for monitoring and optimizing deletion patterns.

Expand Down

0 comments on commit 08e0f14

Please sign in to comment.