Details
-
Bug
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
-
11.0.0
Description
As part of fixing MDEV-29603, the implementation of mtr_t::m_memo was changed to std::vector. According to some performance test analysis by wlad, that caused some performance regression due to more frequent memory heap allocation.
Function Name Total CPU [unit, %] Self CPU [unit, %] Module
|
| - [External Call] WriteFile 9928 (7.55%) 9928 (7.55%) kernelbase
|
| - [External Call]_malloc_base 5897 (4.49%) 5897 (4.49%) ucrtbase
|
| - int __cdecl MYSQLparse(class THD *) 8604 (6.55%) 4392 (3.34%) server
|
| - unsigned short * __cdecl rec_get_offsets_func(unsigned char const *,struct dict_index_t const *,unsigned short *,unsigned __int64,unsigned __int64,struct mem_block_info_t * *) 6175 (4.70%) 4384 (3.34%) server
|
| - bool __cdecl page_cur_search_with_match(struct dtuple_t const *,enum page_cur_mode_t,unsigned __int64 *,unsigned __int64 *,struct page_cur_t *,struct rtr_info *) 11572 (8.80%) 3397 (2.58%) server
|
| - struct buf_block_t * __cdecl buf_page_get_low(class page_id_t,unsigned __int64,unsigned __int64,struct buf_block_t *,unsigned __int64,struct mtr_t *,enum dberr_t *) 8014 (6.10%) 3048 (2.32%) server
|
| - [External Call] _free_base 2852 (2.17%) 2852 (2.17%) ucrtbase
|
| - [External Call] ReadFile 2030 (1.54%) 2030 (1.54%) kernelbase
|
Ideally, we would want to use a collection that implements something similar to the "small string optimization" of std::string. That is, we should allocate some memory for small mtr_t::m_memo as part of m_mtr itself. Only if too many objects are being latched in the mini-transaction (say, when very deep index trees are being accessed) we should need heap-based allocation.
LLVM includes SmallVector, which is exactly what we would seem to need. It is also available in Boost as small_vector.
Attachments
Issue Links
- blocks
-
MDEV-35701 trx_t::autoinc_locks causes unnecessary dynamic memory allocation
-
- Closed
-
- is caused by
-
MDEV-29603 btr_cur_open_at_index_side() is missing some consistency checks
-
- Closed
-
- relates to
-
MDEV-30400 Assertion `height == btr_page_get_level(page_cur_get_page(page_cursor))' failed in btr_cur_search_to_nth_level on INSERT
-
- Closed
-
-
MDEV-18746 Reduce the amount of mem_heap_create() or malloc()
-
- Open
-
Activity
Field | Original Value | New Value |
---|---|---|
Link |
This issue is caused by |
Status | Open [ 1 ] | In Progress [ 3 ] |
Fix Version/s | 11.0 [ 28320 ] |
Link |
This issue relates to |
Fix Version/s | 10.6.12 [ 28513 ] | |
Fix Version/s | 10.7.8 [ 28515 ] | |
Fix Version/s | 10.8.7 [ 28517 ] | |
Fix Version/s | 10.9.5 [ 28519 ] | |
Fix Version/s | 10.10.3 [ 28521 ] | |
Fix Version/s | 10.11.2 [ 28523 ] | |
Fix Version/s | 11.0.1 [ 28548 ] | |
Fix Version/s | 10.6 [ 24028 ] | |
Fix Version/s | 10.7 [ 24805 ] | |
Fix Version/s | 10.8 [ 26121 ] | |
Fix Version/s | 10.9 [ 26905 ] | |
Fix Version/s | 10.10 [ 27530 ] | |
Fix Version/s | 10.11 [ 27614 ] | |
Resolution | Fixed [ 1 ] | |
Status | In Progress [ 3 ] | Closed [ 6 ] |
Link | This issue relates to MDEV-18746 [ MDEV-18746 ] |
Link |
This issue blocks |