Skip to content

Commit f78cb5d

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 f2bb86e commit f78cb5d

File tree

5 files changed

+676
-173
lines changed

5 files changed

+676
-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

+35
Original file line numberDiff line numberDiff line change
@@ -243,13 +243,48 @@ in strict FIFO order.
243243

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

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

254289
The following options can be specified when putting a task in a
255290
`utubettl` queue:

0 commit comments

Comments
 (0)