fix: upgrade databend-meta crates to v260205.3.0#19438
Merged
drmingdrmer merged 3 commits intodatabendlabs:mainfrom Feb 11, 2026
Merged
fix: upgrade databend-meta crates to v260205.3.0#19438drmingdrmer merged 3 commits intodatabendlabs:mainfrom
drmingdrmer merged 3 commits intodatabendlabs:mainfrom
Conversation
Contributor
🤖 CI Job Analysis (Retry 4)
⛔️ CANCELLEDHigher priority request detected - retry cancelled to avoid conflicts. |
This upgrade includes raft-log 0.3.0 bug fixes, a committed-log-id flush fix, and a re-export refactor that removes the need for a direct `raft-log` dependency. raft-log 0.3.0 bug fixes: - Chunk rotation sent wrong file to FlushWorker; new chunk was never fsync'd. raft-log 0.3.0 refactoring: - Data writes moved into FlushWorker for batched I/O. - Replaced `seek+read` with `pread` to prevent race conditions. - `flush(callback)` now takes `Option<T::Callback>` for best-effort writes. databend-meta fixes: - `save_committed` now issues a fire-and-forget `flush(None)` to persist committed log id on a best-effort basis. databend-meta refactoring: - Re-export `raft_log` from `databend-meta-raft-store`, removing the need for downstream crates to depend on `raft-log` directly. Changes: - Remove direct `raft-log` dependency from workspace, `databend-meta-binaries`, and `databend-common-meta-control` - Use `databend_meta_raft_store::raft_log::` re-export path in `import.rs` and `metactl/main.rs` - Update compat docs with versions 1.2.881 and 1.2.882
5b37f9b to
7b4bdc3
Compare
xp-trumpet
approved these changes
Feb 10, 2026
Collaborator
xp-trumpet
left a comment
There was a problem hiding this comment.
@xp-trumpet reviewed 10 files and all commit messages.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on @drmingdrmer).
After the meta-service refactoring in v1.2.874 that moved core implementation to the external databend-meta repository, several README links became stale. This fixes the broken links reported by the link checker (issue databendlabs#19412). Changes: - Remove references to moved core/ directories (client, raft-store, types, etc.) - Update kvapi-test-suite to kvapi-tests (renamed directory) - Move core/store reference to top-level store - Remove non-existent auth directory from common README - Add link to external databend-meta repository - Fix: databendlabs#19412
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.
I hereby agree to the terms of the CLA available at: https://docs.databend.com/dev/policies/cla/
Summary
fix: upgrade databend-meta crates to v260205.3.0
This upgrade includes raft-log 0.3.0 bug fixes, a committed-log-id
flush fix, and a re-export refactor that removes the need for a direct
raft-logdependency.raft-log 0.3.0 bug fixes:
raft-log 0.3.0 refactoring:
seek+readwithpreadto prevent race conditions.flush(callback)now takesOption<T::Callback>for best-effort writes.databend-meta fixes:
save_committednow issues a fire-and-forgetflush(None)to persistcommitted log id on a best-effort basis.
databend-meta refactoring:
raft_logfromdatabend-meta-raft-store, removing the needfor downstream crates to depend on
raft-logdirectly.Changes:
raft-logdependency from workspace,databend-meta-binaries,and
databend-common-meta-controldatabend_meta_raft_store::raft_log::re-export path inimport.rsand
metactl/main.rsTests
Type of change
Related Issues
This change is