maria:bb-10.10-jan-test

Last commit made on 2022-06-11
Get this branch:
git clone -b bb-10.10-jan-test https://git.launchpad.net/maria

Branch merges

Branch information

Name:
bb-10.10-jan-test
Repository:
lp:maria

Recent commits

8ef313a... by Jan Lindström

Restore thread creation as we now do my_thread_init()/end()

c26ba60... by Jan Lindström

Test cleanup

9cc9f60... by Jan Lindström

Fix candidate #3

fb13b43... by mkaruza <email address hidden>

MDEV-27263 Cluster bootstrap node shows duplicate wsrep allowlist IP warning messages on each restart.

We should clear `wsrep_allowlist` table on bootstrap before writing to
it.

Reviewed-by: Jan Lindström <email address hidden>

7ee4c60... by mkaruza <email address hidden>

MDEV-27246 Implement a method to add IPs to allowlist for Galera Cluster node addresses that can make SST/IST requests

Reviewed-by: Jan Lindström <email address hidden>

32edabd... by Marko Mäkelä

Merge 10.9 into 10.10

6dea701... by Marko Mäkelä

Merge 10.8 into 10.9

62419b1... by Marko Mäkelä

MDEV-26713 fixup: Correct the main.winservice_i18n result

0af9346... by Marko Mäkelä

Merge 10.7 into 10.8

d61839c... by Marko Mäkelä

MDEV-28708 Increased congestion on buf_pool.flush_list_mutex

In commit f80deb9590775af44da200920ee9ac662e93205d (MDEV-27868)
a fix for a correctness regression caused a performance regression
by increasing the amount of work that is executed while holding
buf_pool.flush_list_mutex.

buf_page_t::set_temp_modified(): Relax an assertion, to allow an
already dirty block to be marked as dirty.

buf_page_t::flush_list_requests: Note that the variable is not
always protected by buf_pool.flush_list_mutex. Already dirty blocks
that are being written to will increment the counter without
holding buf_pool.flush_list_mutex.

mtr_t::process_freed_pages(): Handle pages that were freed during
the execution of the mini-transaction.

ReleaseUnlogged, mtr_t::release_unlogged(): Release modified pages when
no log was written. This is for pages of the temporary tablespace, or for
IMPORT TABLESPACE.

ReleaseModified: Renamed from ReleaseBlocks.
Assume that buf_pool.flush_list_mutex was acquired by the caller.

ReleaseSimple: A combination of ReleaseLatches and ReleaseModified,
for the case that for any modified pages, some earlier modifications
are already waiting to be written.

mtr_t::commit(): Invoke one of release_unlogged(), ReleaseModified,
ReleaseSimple, ReleaseAll. Acquire and release buf_pool.flush_list_mutex
at most once.

memo_slot_release(): Simplify the code.

mtr_t::sx_latch_at_savepoint(), mtr_t::x_latch_at_savepoint():
Reduce the size of the critical section.

fil_space_t::update_last_freed_lsn(), fil_space_t::clear_freed_ranges(),
fil_space_t::add_free_range(): Assume that freed_range_mutex is held
by the caller.

buf_pool_t::prepare_insert_into_flush_list(): Determine the insert
position for buf_pool_t::insert_into_flush_list(). Remove any clean
blocks from buf_pool.flush_list that were encountered while searching.

buf_pool_t::insert_into_flush_list(): Insert the block at the
predetermined position.