Skip to content

Tsdb doc values inline building jump table #126499

New issue

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

Merged
merged 14 commits into from
Apr 17, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[CI] Auto commit changes from spotless
  • Loading branch information
elasticsearchmachine committed Apr 16, 2025
commit 13ca4440efeeff84dee5a458de23200ec4784d23
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,7 @@ short build(IndexOutput data) throws IOException {
// offset+index jump-table stored at the end
short blockCount = flushBlockJumps(jumps, lastBlock + 1, disiTempOutput);
disiTempOutput.close();
try (
var addressDataInput = dir.openInput(skipListTempFileName, context)
) {
try (var addressDataInput = dir.openInput(skipListTempFileName, context)) {
data.copyBytes(addressDataInput, addressDataInput.length());
}
return blockCount;
Expand Down