Replace System.out.println with LogManager in LSMVectorIndex#2912
Closed
Replace System.out.println with LogManager in LSMVectorIndex#2912
Conversation
each entry is not 17 bytes anymore, but variable. Also got rid of page header, because LSM are immutable only. Pointers are now absolute pointers.
2 tasks
Co-authored-by: lvca <312606+lvca@users.noreply.github.com>
Contributor
Author
|
Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details. Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
Copilot
AI
changed the title
[WIP] Address feedback on improved compression with lsm vectors
Replace System.out.println with LogManager in LSMVectorIndex
Dec 11, 2025
Contributor
🧪 CI InsightsHere's what we observed from your CI run for d335d25. 🟢 All jobs passed!But CI Insights is watching 👀 |
mergify bot
added a commit
that referenced
this pull request
Feb 5, 2026
…in /studio in the security-critical group [skip ci] Bumps the security-critical group in /studio with 1 update: [sweetalert2](https://github.com/sweetalert2/sweetalert2). Updates `sweetalert2` from 11.26.17 to 11.26.18 Release notes *Sourced from [sweetalert2's releases](https://github.com/sweetalert2/sweetalert2/releases).* > v11.26.18 > --------- > > [11.26.18](sweetalert2/sweetalert2@v11.26.17...v11.26.18) (2026-02-02) > ------------------------------------------------------------------------------------------------- > > ### Bug Fixes > > * types in argsToParams.js ([#2912](https://redirect.github.com/sweetalert2/sweetalert2/issues/2912)) ([11e6344](sweetalert2/sweetalert2@11e6344)) Changelog *Sourced from [sweetalert2's changelog](https://github.com/sweetalert2/sweetalert2/blob/main/CHANGELOG.md).* > [11.26.18](sweetalert2/sweetalert2@v11.26.17...v11.26.18) (2026-02-02) > ------------------------------------------------------------------------------------------------- > > ### Bug Fixes > > * types in argsToParams.js ([#2912](https://redirect.github.com/sweetalert2/sweetalert2/issues/2912)) ([11e6344](sweetalert2/sweetalert2@11e6344)) Commits * [`01f6d80`](sweetalert2/sweetalert2@01f6d80) chore(release): 11.26.18 [skip ci] * [`11e6344`](sweetalert2/sweetalert2@11e6344) fix: types in argsToParams.js ([#2912](https://redirect.github.com/sweetalert2/sweetalert2/issues/2912)) * [`4866232`](sweetalert2/sweetalert2@4866232) chore: bump bun.lock * [`c640b87`](sweetalert2/sweetalert2@c640b87) chore: add PalsToy to sponsors * [`b995377`](sweetalert2/sweetalert2@b995377) chore: bump stylelint deps * [`c4a9734`](sweetalert2/sweetalert2@c4a9734) chore: bump bun.lock * [`c212154`](sweetalert2/sweetalert2@c212154) chore: rm dollauthority from sponsors * [`49c3c10`](sweetalert2/sweetalert2@49c3c10) chore: bump bun.lock * [`84317f0`](sweetalert2/sweetalert2@84317f0) chore: rm dlxplugins from sponsors * [`9ac3b97`](sweetalert2/sweetalert2@9ac3b97) chore: rm unnecessary code * Additional commits viewable in [compare view](sweetalert2/sweetalert2@v11.26.17...v11.26.18) [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
Replaces direct console output with proper logging infrastructure in
LSMVectorIndex.loadVectorsFromPages().Motivation
Addresses code review feedback from #2911. Direct use of
System.out.printlnin library code bypasses log level controls and output routing. The codebase usesLogManagerconsistently elsewhere.Related issues
Additional Notes
Changed from string concatenation to format specifiers for cleaner logging:
Checklist
mvn clean packagecommand💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.