Updated to current AGPL version 18.1.40 and deleted LEGAL. - #9
Closed
JasonCoombs wants to merge 2 commits into
Closed
Updated to current AGPL version 18.1.40 and deleted LEGAL.#9JasonCoombs wants to merge 2 commits into
JasonCoombs wants to merge 2 commits into
Conversation
gburd
added a commit
that referenced
this pull request
Jun 16, 2026
Add docs/design/lsm.md comparing three log-structured implementations against the Amethyst adaptive-compaction paper, and refine ROADMAP #9. Findings: - aether (Rust): HanoiDB levels + SuRF/Bloom + STRUCTURE-level adaptation (SingleIndex/Hybrid/MultiLevel via rolling metrics + hysteresis) + work-budget merge strategies. No leveled/tiered choice. - Amethyst (paper): SEGMENT-level adaptive compaction (per-segment leveled/tiered FSM + counters + cooldowns) -- orthogonal to aether, same mechanism. - libxtc (C): Bitcask append-only log + in-memory hash index = the LSM-HASH config. - noxu (Rust): JE-style B+tree-in-WAL + cleaner + VLSN/replication = the index-in-WAL config. Synthesis: a two-axis adaptive LSM (aether structure axis + Amethyst segment policy axis) over one shared rolling-counter+cooldown controller; HanoiDB layout + SuRF/Bloom; and #9 (LSM) / #13 (HASH) / #14 (index-in-WAL) share one log-structured core (Bitcask for HASH, JE cleaner for B-tree).
gburd
added a commit
that referenced
this pull request
Jul 31, 2026
Add docs/design/lsm.md comparing three log-structured implementations against the Amethyst adaptive-compaction paper, and refine ROADMAP #9. Findings: - aether (Rust): HanoiDB levels + SuRF/Bloom + STRUCTURE-level adaptation (SingleIndex/Hybrid/MultiLevel via rolling metrics + hysteresis) + work-budget merge strategies. No leveled/tiered choice. - Amethyst (paper): SEGMENT-level adaptive compaction (per-segment leveled/tiered FSM + counters + cooldowns) -- orthogonal to aether, same mechanism. - libxtc (C): Bitcask append-only log + in-memory hash index = the LSM-HASH config. - noxu (Rust): JE-style B+tree-in-WAL + cleaner + VLSN/replication = the index-in-WAL config. Synthesis: a two-axis adaptive LSM (aether structure axis + Amethyst segment policy axis) over one shared rolling-counter+cooldown controller; HanoiDB layout + SuRF/Bloom; and #9 (LSM) / #13 (HASH) / #14 (index-in-WAL) share one log-structured core (Bitcask for HASH, JE cleaner for B-tree).
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.
With all due respect for your original intention to never push Affero GPL updates to this repo, that's nonsense and was always nonsense, so let's push the latest Berkeley DB code here as a mirror. Thanks.