Skip to content

Commit 1e1645c

Browse files
committed
utubettl: fix slow take on busy utubes
If some of the utubettl for tasks at the top of the queue were busy most of the time, `take` would slow down for every other task. This problem is fixed by creating a new space `space_ready`. It contains first task with `READY` status from each utube. This solution shows great results for the stated problem, with the cost of slowing the `put` method (it is ~3 times slower). Thus, this workaround is disabled by default. To enable it, user should set the `storage_mode = queue.driver.utubettl.STORAGE_MODE_UTUBE_READY_SPACE` as an option while creating the tube. As example: ```lua local test_queue = queue.create_tube('test_queue', 'utubettl', {temporary = true, storage_mode = queue.driver.utubettl.STORAGE_MODE_UTUBE_READY_SPACE}) ``` Closes #228
1 parent 293aae0 commit 1e1645c

File tree

5 files changed

+677
-173
lines changed

5 files changed

+677
-173
lines changed

CHANGELOG.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
## [Unreleased]
99

1010
### Added
11-
- `storage_mode` option for creating a `utube` tube (#228). It enables the
12-
workaround for slow takes while working with busy tubes.
11+
- `storage_mode` option for creating a `utube` and `utubettl` tube (#228).
12+
It enables the workaround for slow takes while working with busy tubes.
1313

1414
### Fixed
1515

1616
- Stuck in `INIT` state if an instance failed to enter the `running` mode
1717
in time (#226). This fix works only for Tarantool versions >= 2.10.0.
18-
- Slow takes on busy `utube` tubes (#228). The workaround could be enabled by
19-
passing the `storage_mode = "utube_ready_space"` option while creating
20-
the tube.
18+
- Slow takes on busy `utube` and `utubettl` tubes (#228). The workaround could
19+
be enabled by passing the `storage_mode = "utube_ready_space"` option while
20+
creating the tube.
2121

2222
## [1.3.3] - 2023-09-13
2323

README.md

+36
Original file line numberDiff line numberDiff line change
@@ -244,13 +244,49 @@ in strict FIFO order.
244244

245245
This queue type is effectively a combination of `fifottl` and `utube`.
246246

247+
It is advised not to use `utubettl` methods inside transactions with
248+
`read-confirmed` isolation level. It can lead to errors when trying to make
249+
parallel tube methods calls with mvcc enabled.
250+
247251
The following options can be specified when creating a `utubettl` queue:
248252
* `temporary` - boolean - if true, the contents of the queue do not persist
249253
on disk
250254
* `if_not_exists` - boolean - if true, no error will be returned if the tube
251255
already exists
252256
* `on_task_change` - function name - a callback to be executed on every
253257
operation
258+
* `storage_mode` - string - one of
259+
* `queue.driver.utubettl.STORAGE_MODE_DEFAULT` ("default") - default
260+
implementation of `utubettl`
261+
* `queue.driver.utubettl.STORAGE_MODE_UTUBE_READY_SPACE`
262+
("utube_ready_space") - allows processing `take` requests faster, but
263+
by the cost of `put` operations speed. Right now this option is enabled
264+
only for `memtx` engine.
265+
WARNING: this is an experimental storage mode.
266+
267+
Here is a benchmark comparison of these two modes:
268+
* Benchmark for simple `put` and `take` methods. 30k utubes are created
269+
with a single task each. Task creation time is calculated. After that
270+
30k consumers are calling `take` + `ack`, each in the separate fiber.
271+
Time to ack all tasks is calculated. The results are as follows:
272+
273+
| | put (30k) | take+ack |
274+
|---------|-----------|----------|
275+
| default | 200ms | 1.7s |
276+
| ready | 320ms | 1.8s |
277+
* Benchmark for the busy utubes. 10 tubes are created.
278+
Each contains 1000 tasks. After that, 10 consumers are created (each works
279+
on his tube only, one tube — one consumer). Each consumer will
280+
`take`, then `yield` and then `ack` every task from their utube
281+
(1000 tasks each).
282+
After that, we can also run this benchmark with 10k tasks on each utube,
283+
100k tasks and 140k tasks. But all that with 10 utubes and 10 consumers.
284+
The results are as follows:
285+
286+
| | 1k | 10k | 50k | 140k |
287+
|---------|-------|------|------|-------|
288+
| default | 80s | 1.6h | 100h | 1000h |
289+
| ready | 520ms | 5.4s | 28s | 83s |
254290

255291
The following options can be specified when putting a task in a
256292
`utubettl` queue:

0 commit comments

Comments
 (0)