feat: Add async replication configuration support (issue #284)#294
Merged
mpartipilo merged 2 commits intov1.0.1from Mar 5, 2026
Merged
feat: Add async replication configuration support (issue #284)#294mpartipilo merged 2 commits intov1.0.1from
mpartipilo merged 2 commits intov1.0.1from
Conversation
There was a problem hiding this comment.
Orca Security Scan Summary
| Status | Check | Issues by priority | |
|---|---|---|---|
| Secrets | View in Orca |
Summary - Weaviate C# Client CoverageSummary
CoverageWeaviate.Client - 61.4%
Weaviate.Client.Analyzers - 91.1%
|
c7446da to
64ef2dc
Compare
Expose ReplicationAsyncConfig on ReplicationConfig for fine-grained async replication tuning (requires Weaviate 1.36+): - Add ReplicationAsyncConfig public record with 14 long? fields: maxWorkers, hashtreeHeight, frequency, frequencyWhilePropagating, aliveNodesCheckingFrequency, loggingFrequency, diffBatchSize, diffPerNodeTimeout, prePropagationTimeout, propagationTimeout, propagationLimit, propagationDelay, propagationConcurrency, propagationBatchSize - Add ReplicationConfig.AsyncConfig property - Add ReplicationConfigUpdate.AsyncConfig forwarding property - Update Extensions.cs model→DTO and DTO→model mappings for asyncConfig - Add 3 unit tests: full field mapping, DTO round-trip, null when absent - Update openapi.json and Models.g.cs to Weaviate 1.36 spec - Document 44 new public API symbols in PublicAPI.Unshipped.txt Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…tests for AsyncConfig Improve async replication config test coverage: - Add round-trip test verifying all 14 DTO fields map correctly to model (matching Java reference) - Add test verifying ReplicationConfigUpdate.AsyncConfig forwards get/set to wrapped config Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
64ef2dc to
f305489
Compare
dirkkul
approved these changes
Mar 5, 2026
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.
Expose ReplicationAsyncConfig on ReplicationConfig for fine-grained async replication tuning (requires Weaviate 1.36+):