We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assume a table with the following field:
id int
There are n data files, each of which has the statistics min(id) and max(id). ids are positive integers.
n
min(id)
max(id)
id
Querying by id < 0 would require an O(n) run on all data files in the manifest, querying whether min(id) < 0 < max(id).
id < 0
min(id) < 0 < max(id)
Aggregating metrics and/or statistics to the Snapshot level would reduce such scans from O(n) (n being the number of data files) to O(1).
The text was updated successfully, but these errors were encountered:
Delete manifest lists after expiring snapshots. (Netflix#102)
460d080
No branches or pull requests
Assume a table with the following field:
There are
n
data files, each of which has the statisticsmin(id)
andmax(id)
.id
s are positive integers.Querying by
id < 0
would require an O(n) run on all data files in the manifest, querying whethermin(id) < 0 < max(id)
.Aggregating metrics and/or statistics to the Snapshot level would reduce such scans from O(n) (
n
being the number of data files) to O(1).The text was updated successfully, but these errors were encountered: