summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge 10.5 into 10.6bb-10.3-mdev2126510.3-mdev21265Marko Mäkelä2020-11-2618-180/+208
|\
| * MDEV-24280 InnoDB triggers too many independent periodic tasksbb-10.5-MDEV-24280Marko Mäkelä2020-11-256-67/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A side effect of MDEV-16264 is that a large number of threads will be created at server startup, to be destroyed after a minute or two. One source of such thread creation is srv_start_periodic_timer(). InnoDB is creating 3 periodic tasks: srv_master_callback (1Hz) srv_error_monitor_task (1Hz), and srv_monitor_task (0.2Hz). It appears that we can merge srv_error_monitor_task and srv_monitor_task and have them invoked 4 times per minute (every 15 seconds). This will affect our ability to enforce innodb_fatal_semaphore_wait_threshold and some computations around BUF_LRU_STAT_N_INTERVAL. We could remove srv_master_callback along with the DROP TABLE queue at some point of time in the future. We must keep it independent of the innodb_fatal_semaphore_wait_threshold detection, because the background DROP TABLE queue could get stuck due to dict_sys being locked by another thread. For now, srv_master_callback must be invoked once per second, so that innodb_flush_log_at_timeout=1 can work. BUF_LRU_STAT_N_INTERVAL: Reduce the precision and extend the time from 50*1 second to 4*15 seconds. srv_error_monitor_timer: Remove. MAX_MUTEX_NOWAIT: Increase from 20*1 second to 2*15 seconds. srv_refresh_innodb_monitor_stats(): Avoid a repeated call to time(NULL). Change the interval to less than 60 seconds. srv_monitor(): Renamed from srv_monitor_task. srv_monitor_task(): Renamed from srv_error_monitor_task(). Invoked only once in 15 seconds. Invoke also srv_monitor(). Increase the fatal_cnt threshold from 10*1 second to 1*15 seconds. sync_array_print_long_waits_low(): Invoke time(NULL) only once. Remove a bogus message about printouts for 30 seconds. Those printouts were effectively already disabled in MDEV-16264 (commit 5e62b6a5e06eb02cbde1e34e95e26f42d87fce02).
| * MDEV-24278 InnoDB page cleaner keeps waking up on idle serverMarko Mäkelä2020-11-253-4/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The purpose of the InnoDB page cleaner subsystem is to write out modified pages from the buffer pool to data files. When the innodb_max_dirty_pages_pct_lwm is not exceeded or innodb_adaptive_flushing=ON decides not to write out anything, the page cleaner should keep sleeping indefinitely until the state of the system changes: a dirty page is added to the buffer pool such that the page cleaner would no longer be idle. buf_flush_page_cleaner(): Explicitly note when the page cleaner is idle. When that happens, use mysql_cond_wait() instead of mysql_cond_timedwait(). buf_flush_insert_into_flush_list(): Wake up the page cleaner if needed. innodb_max_dirty_pages_pct_update(), innodb_max_dirty_pages_pct_lwm_update(): Wake up the page cleaner just in case. Note: buf_flush_ahead(), buf_flush_wait_flushed() and shutdown are already waking up the page cleaner thread.
| * MDEV-24270: Clarify some commentsMarko Mäkelä2020-11-252-10/+21
| |
| * Fix misspelling.Vladislav Vaintroub2020-11-251-11/+11
| | | | | | | | Kudos to Marko for finding.
| * Cleanup. Remove obsolete commentVladislav Vaintroub2020-11-251-1/+0
| |
| * Cleanup. Provide accurate comment on my_getevents().Vladislav Vaintroub2020-11-251-2/+10
| |
| * Partially Revert "MDEV-24270: Collect multiple completed events at a time"Vladislav Vaintroub2020-11-255-7/+10
| | | | | | | | | | | | | | This partially reverts commit 6479006e14691ff85072d06682f81b90875e9cb0. Remove the constant tpool::aio::N_PENDING, which has no intrinsic meaning for the tpool.
| * Cleanup: Fix Intel compiler warnings about sign conversionsMarko Mäkelä2020-11-255-8/+8
| |
| * Cleanup: Remove redundant nonnull attributesMarko Mäkelä2020-11-253-5/+3
| |
| * MDEV-24270: Collect multiple completed events at a timeMarko Mäkelä2020-11-255-12/+10
| | | | | | | | | | | | | | tpool::aio::N_PENDING: Replaces OS_AIO_N_PENDING_IOS_PER_THREAD. This limits two similar things: the number of outstanding requests that a thread may io_submit(), and the number of completed requests collected at a time by io_getevents().
| * MDEV-24270 Misuse of io_getevents() causes wake-ups at least twice per secondMarko Mäkelä2020-11-251-82/+79
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the asynchronous I/O interface, InnoDB is invoking io_getevents() with a timeout value of half a second, and requesting exactly 1 event at a time. The reason to have such a short timeout is to facilitate shutdown. We can do better: Use an infinite timeout, wait for a larger maximum number of events. On shutdown, we will invoke io_destroy(), which should lead to the io_getevents system call reporting EINVAL. my_getevents(): Reimplement the libaio io_getevents() by only invoking the system call. The library implementation would try to elide the system call and return 0 immediately if aio_ring_is_empty() holds. Here, we do want a blocking system call, not 100% CPU usage. Neither do we want the aio_ring_is_empty() trigger SIGSEGV because it is dereferencing some memory that was freed by io_destroy().
* | MDEV-24167: Fix -DPLUGIN_PERFSCHEMA=NO and Windows debug buildsMarko Mäkelä2020-11-246-8/+14
| |
* | Cleanup: Reduce trx_t::mutex hold timeMarko Mäkelä2020-11-245-85/+49
| |
* | Cleanup: Use Atomic_relaxed for trx_t::stateMarko Mäkelä2020-11-243-9/+4
| | | | | | | | | | | | | | For reading trx_t::state we can avoid acquiring trx_t::mutex. Atomic load and store should be similar to normal load and store on most instruction set architectures. The atomicity of the operation would merely prohibit the compiler from reordering some operations.
* | Cleanup: Use Atomic_relaxed for dict_sys.row_idMarko Mäkelä2020-11-247-168/+66
| |
* | MDEV-24167: Replace fil_space::latchMarko Mäkelä2020-11-2423-175/+201
| | | | | | | | | | | | We must avoid acquiring a latch while we are already holding one. The tablespace latch was being acquired recursively in some operations that allocate or free pages.
* | MDEV-24167: Replace fts_cache_rw_lock, fts_cache_init_rw_lock with mutexMarko Mäkelä2020-11-2414-108/+77
| | | | | | | | | | | | | | | | | | fts_cache_t::init_lock: Replace with mutex. This was only acquired in exclusive mode. fts_cache_t::lock: Replace with mutex. The only read-lock user was i_s_fts_index_cache_fill() for producing content for the view INFORMATION_SCHEMA.INNODB_FT_INDEX_CACHE.
* | MDEV-24167: Replace dict_operation_lock (dict_sys.latch)Marko Mäkelä2020-11-2417-113/+74
| |
* | MDEV-24167: Replace trx_purge_latchMarko Mäkelä2020-11-2410-53/+53
| |
* | MDEV-24167: Replace trx_i_s_cache_lockMarko Mäkelä2020-11-245-30/+10
| |
* | MDEV-24167: Use lightweight srw_lock for btr_search_latchMarko Mäkelä2020-11-2420-202/+379
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Many InnoDB rw-locks unnecessarily depend on the complex InnoDB rw_lock_t implementation that support the SX lock mode as well as recursive acquisition of X or SX locks. One of them is the bunch of adaptive hash index search latches, instrumented as btr_search_latch in PERFORMANCE_SCHEMA. Let us introduce a simpler lock for those in order to reduce overhead. srw_lock: A simple read-write lock that does not support recursion. On Microsoft Windows, this wraps SRWLOCK, only adding runtime overhead if PERFORMANCE_SCHEMA is enabled. On Linux (all architectures), this is implemented with std::atomic<uint32_t> and the futex system call. On other platforms, we will wrap mysql_rwlock_t with zero runtime overhead. The PERFORMANCE_SCHEMA instrumentation differs from InnoDB rw_lock_t in that we will only invoke PSI_RWLOCK_CALL(start_rwlock_wrwait) or PSI_RWLOCK_CALL(start_rwlock_rdwait) if there is an actual conflict.
* | Merge 10.5 into 10.6Marko Mäkelä2020-11-242-22/+20
|\ \ | |/
| * MDEV-24271 rw_lock::read_lock_yield() may cause writer starvationMarko Mäkelä2020-11-242-22/+20
| | | | | | | | | | | | | | The greedy fetch_add(1) approach of read_trylock() may cause starvation of a waiting write lock request. Let us use a compare-and-swap for the read lock acquisition in order to guarantee the progress of writers.
* | After-merge fix: Update ColumnStoreMarko Mäkelä2020-11-241-0/+0
| |
* | Fix GCC warning/error.Vladislav Vaintroub2020-11-231-1/+2
| |
* | MDEV-19237 Skip sending metadata when possible for binary protocol.Vladislav Vaintroub2020-11-238-18/+449
| | | | | | | | | | | | | | | | | | | | | | | | Do not resend metadata, if metadata does not change between prepare and execute of prepared statement, or between executes. Currently, metadata of *every* prepared statement will be checksummed, and change is detected once checksum changes. This is not from ideal, performance-wise. The code for better/faster detection of unchanged metadata, is already in place, but currently disabled due to PS bugs, such as MDEV-23913.
* | Merge 10.5 into 10.6Marko Mäkelä2020-11-2355-344/+502
|\ \ | |/
| * MDEV-21534 fixup: Remove HAVE_IB_LINUX_FUTEXMarko Mäkelä2020-11-233-53/+6
| | | | | | | | | | | | Since commit 30ea63b7d2077883713e63cbf4e661ba0345bf68 we actually depend on futex on Linux. Also, we depend on std::atomic for even longer.
| * MDEV-24167: Remove PFS instrumentation of buf_block_tMarko Mäkelä2020-11-207-117/+4
| | | | | | | | | | | | | | | | | | We always defined PFS_SKIP_BUFFER_MUTEX_RWLOCK, that is, the latches of the buffer pool blocks were never instrumented in PERFORMANCE_SCHEMA. For some reason, the debug_latch (which enforce proper usage of buffer-fixing in debug builds) was instrumented.
| * MDEV-22871 fixup: Relax a debug assertionMarko Mäkelä2020-11-201-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | In commit bf3c862faa8efed4a662725ec27586cd69e9228e we introduced an assertion that may dereference a null pointer. This regression was caught by running the following: ./mtr --parallel=auto --suite=innodb \ --mysqld=--loose-innodb-adaptive-hash-index The adaptive hash index is disabled by default since commit 88cdfc5c7d4764e5267c87eadeb8c3f95faa73d0 (MDEV-20487) and hence the problem was not caught earlier.
| * Run innodb_wl6326_big only in debug buildsMarko Mäkelä2020-11-201-0/+4
| | | | | | | | | | | | | | | | | | | | | | The test seems to deterministically fail on RelWithDebInfo builds due to a timeout in wait_condition.inc. According to Matthias Leich (the original author of the test), the failure rate would reduce if we disabled the purge of transaction history by setting innodb_force_recovery=2. For now, let us run this stress test on debug builds only.
| * Cleanup: Fix build problems with the Intel compilerMarko Mäkelä2020-11-202-2/+2
| | | | | | | | | | | | | | | | fil_space_t::flush_low(): Define and declare without inline. ut_is_2pow(): Remove UNIV_LIKELY. This is almost exclusively used in debug assertions. UNIV_LIKELY is not compatible with static_assert in some compilers.
| * MDEV-21534 fixup: Use a compile-time constantMarko Mäkelä2020-11-201-1/+1
| |
| * Update MCS to resolve libmarias3 compulation for centos74-amd64-debugRoman Nozdrin2020-11-193-5/+3
| | | | | | | | | | | | | | | | | | | | | | pipeline in community BB Fix for rebuild from source step Disable MCS on i386|i686 platforms This patch puts MCS debian packaging files and part of debian/control into the engine directory
| * MDEV-24125: linux large pages, linux/mman.h neededDaniel Black2020-11-194-0/+6
| | | | | | | | | | Centos/RHEL7 have the MAP_HUGE_SHIFT constant defined in linux/mman.h which needed to get included.
| * MDEV-24224 Gap lock on delete in 10.5 using READ COMMITTEDbb-10.5-MDEV-24224Marko Mäkelä2020-11-185-27/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When MDEV-19544 (commit 1a6f470464171bd1144e4dd6f169bb4018f2e81a) simplified the initialization of the local variable set_also_gap_locks, an inadvertent change was included. Essentially, all code branches that are executed when set_also_gap_locks hold must also ensure that trx->isolation_level > TRX_ISO_READ_COMMITTED holds. This was being violated in a few code paths. It turns out that there is an even simpler fix: Remove the test of thd_is_select() completely. In that way, the first part of UPDATE or DELETE should work exactly like SELECT...FOR UPDATE. thd_is_select(): Remove.
| * Merge 10.4 into 10.5Marko Mäkelä2020-11-175-1/+23
| |\
| | * Work around MDEV-24232: Skip perfschema.nesting if WITH_WSREP=OFFMarko Mäkelä2020-11-171-0/+2
| | |
| | * MDEV-24115 Fix -Wconversion in Timeval::Timeval() on Mac OS Xbb-10.4-MDEV-24115Dmitry Shulga2020-11-171-1/+7
| | | | | | | | | | | | | | | | | | | | | The data member tv_usec of the struct timeval is declared as suseconds_t on MacOS. Size of suseconds_t is 4 bytes. On the other hand, size of ulong is 8 bytes on 64-bit MacOS, so attempt to assign a value of wider type (usec) to a value (tv_usec) of narrower type leads to error.
| | * Merge 10.3 into 10.4Marko Mäkelä2020-11-171-0/+6
| | |\
| | | * Do not run maria.repair with --embedded as memory usage is differentMonty2020-11-161-0/+6
| | | |
| | * | Restore autoincrement offset in MTR test MDEV-24063Daniele Sciascia2020-11-162-0/+8
| | | |
| * | | MDEV-24188 fixup: Simplify the wait loopMarko Mäkelä2020-11-171-11/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Starting with commit 7cffb5f6e8a231a041152447be8980ce35d2c9b8 (MDEV-23399) the function buf_flush_page() will first acquire block->lock and only after that invoke set_io_fix(). Before that, it was possible to reach a livelock between buf_page_create() and buf_flush_page(). buf_page_create(): Directly try acquiring the exclusive page latch without checking whether the page is io-fixed or buffer-fixed. (As a matter of fact, the have_x_latch() check is not strictly necessary, because we still support recursive X-latches.) In case of a latch conflict, wait while allowing buf_page_write_complete() to acquire buf_pool.mutex and release the block->lock. An attempt to wait for exclusive block->lock while holding buf_pool.mutex would lead to a hang in the tests parts.part_supported_sql_func_innodb and stress.ddl_innodb, due to a deadlock between buf_page_write_complete() and buf_page_create(). Similarly, in case of an I/O fixed compressed-only ROW_FORMAT=COMPRESSED page, we will sleep before retrying. In both cases, we will sleep for 1ms or until a flush batch is completed.
| * | | Fix suppression in MTR test galera_3nodes.inconsistency_shutdownDaniele Sciascia2020-11-172-2/+2
| | | |
| * | | MDEV-23610: Slave user can't run "SHOW SLAVE STATUS" anymore after upgrade ↵Sujatha2020-11-172-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | to 10.5, mysql_upgrade should take of that Post push fix. Update version to 10.5.8.
| * | | MDEV-24125: allow compile on Linux headers < 3.8Daniel Black2020-11-171-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows MariaDB to compile on old (limits to >2.6.32) linux kernel versions. This warns that attempts to use large pages will rely on implict kernel determination.
| * | | MDEV-24125: linux large pages - Revert "Fixed centos 6 build failure"Daniel Black2020-11-171-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 6cf8f05fd9deb900a78898576b85753e09feddaa. Original patch assumed that MAP_HUGETLB as consistent across achitectures which isn't the case. Defining it unconditionally broke large pages on every achitecutre where the value differed from x86_64. With the EOL for Centos/RHEL6 announced in 10.5.7, <3.8 linux kernels are no longer supported.
| * | | MDEV-24124: main.drop test - mulitarch/os error messagesDaniel Black2020-11-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Account for variety of mips, hppa, solaris and other messages. Copied from rpl.rpl_drop_db test.
| * | | MDEV-23610: Slave user can't run "SHOW SLAVE STATUS" anymore after upgrade ↵Sujatha2020-11-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | to 10.5, mysql_upgrade should take of that Fixing a post push test issue.