feat(transaction): Serializable Snapshot Isolation (SSI) — v1.8.0#4281
Draft
feat(transaction): Serializable Snapshot Isolation (SSI) — v1.8.0#4281
Conversation
Add full SSI support with: - IsolationLevel::SerializableSnapshot alias (= SERIALIZABLE) - SSIConfig struct: enable_predicate_locking, max_predicate_locks, conflict_detection_interval; setSSIConfig()/getSSIConfig() - SerializationConflict struct and detectConflicts() on TransactionManager - LockManager: setPredicateLockingEnabled(), setMaxPredicateLocks(), getMaxPredicateLocks(), isPredicateLockingEnabled(); acquirePredicateLock now enforces the global limit and respects the enabled flag; checkPredicateConflict short-circuits when disabled - TransactionRetryManager.classifyError() extended to detect SSI serialization-failure messages as WRITE_CONFLICT (retryable) - 30+ tests in tests/test_transaction_ssi.cpp (TransactionSSITests) - CI workflow: .github/workflows/transaction-ssi-ci.yml Closes: roadmap:122:transaction:v1.8.0:serializable-snapshot-isolation-ssi Co-authored-by: makr-code <150588092+makr-code@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add Serializable Snapshot Isolation (SSI) to transaction domain
feat(transaction): Serializable Snapshot Isolation (SSI) — v1.8.0
Mar 15, 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.
Implements full SSI for ThemisDB v1.8.0: predicate (SIREAD) lock tracking, read-write / write-write conflict detection, automatic serialization failure, and retry with exponential backoff.
Description
Core API additions
IsolationLevel::SerializableSnapshot— alias forSERIALIZABLE(value = 4), as specified in the architecture specTransactionManager::SSIConfig—enable_predicate_locking,max_predicate_locks,conflict_detection_interval; wired viasetSSIConfig()/getSSIConfig()which propagate limits toLockManagerTransactionManager::SerializationConflict+detectConflicts(txn_id)— enumerate predicate-lock conflicts for a live SERIALIZABLE transactionLockManagerextensionssetPredicateLockingEnabled(bool)— global on/off;checkPredicateConflictshort-circuits to 0 when disabledsetMaxPredicateLocks(size_t)— cap total concurrent predicate locks;acquirePredicateLockreturnsfalse(silent drop) at limitstd::atomic-backed, thread-safeRetry integration
TransactionRetryManager::classifyError()extended to match"serialization failure"and"transaction must be retried"asWRITE_CONFLICTsoexecuteWithRetrytransparently retries SSI-aborted transactions with exponential backoff.Write-skew prevention
Predicate locks acquired via
trackPredicateRead([start, end])block any other SERIALIZABLE transaction from writing into that range, eliminating the classic write-skew / lost-update anomalies.Type of Change
Testing
tests/test_transaction_ssi.cpp: 30+ focused tests (TransactionSSITests) covering all 16 ACs: predicate lock tracking, read-write conflict, write-write conflict, serialization failure, retry backoff, SSIConfig management,detectConflicts, write-skew prevention, lock release on commit/rollback,LockManagerunit tests📚 Research & Knowledge (wenn applicable)
Relevante Quellen:
Checklist
Original prompt
🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.