Skip to content
Snippets Groups Projects
Commit 7e86a4c3 authored by Vladimir Davydov's avatar Vladimir Davydov Committed by Vladimir Davydov
Browse files

changelog: mark vinyl transaction isolation level support as breaking

The transaction isolation level used by Tarantool by default is
'best-effort' so adding support of transaction isolation levels to Vinyl
effectively switched the isolation level used by Vinyl transactions from
'read-committed' to 'best-effort', which potentially may cause more
conflicts. Let's mention it in the changelog and mark this change as
breaking.

Follow-up commit 588170a7 ("vinyl: implement transaction isolation
levels")
Follow-up #5522

NO_DOC=changelog
NO_TEST=changelog
parent ed136255
No related branches found
No related tags found
No related merge requests found
## feature/vinyl
* Added support of transaction isolation levels for the Vinyl engine.
The `txn_isolation` option passed to `box.begin()` now has the same
effect for Vinyl and memtx (gh-5522).
* **[Breaking change]** Added support of transaction isolation levels for the
Vinyl engine. The `txn_isolation` option passed to `box.begin()` now has the
same effect for Vinyl and memtx. Note, this effectively changes the default
isolation level of Vinyl transactions from 'read-committed' to 'best-effort',
which may cause more conflicts (gh-5522).
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment