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.
The release introduces an experimental
storage_mode
option for theutube
andutubettl
drivers with thememtx
engine. It could be used to create autube
orutubettl
queue with an additional buffer space that stores only ready to take tasks.The storage mode slower in general cases, but a much faster in cases when you have utubes with many tasks (see README.md for the performance comparison). So you should make your choice carefully.
Added
storage_mode
option for creating autube
andutubettl
tube (utubettl: slow take #228). It enables the workaround for slow takes while working with busy tubes.Fixed
INIT
state if an instance failed to enter therunning
mode in time (queue stuck in INIT state on tarantool 3 #226). This fix works only for Tarantool versions >= 2.10.0.utube
andutubettl
tubes (utubettl: slow take #228). The workaround could be enabled by passing thestorage_mode = "ready_buffer"
option while creating the tube.