mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
MDEV-30996 insert.. select in presence of full text index freezes all other commits at commit time
- This patch does the following: git revert --no-commit673243c893
git revert --no-commit6c669b9586
git revert --no-commitbacaf2d4f4
git checkout HEAD mysql-test git revert --no-commit1fd7d3a9ad
Above command reverts MDEV-29277, MDEV-25581, MDEV-29342. When binlog is enabled, trasaction takes a lot of time to do sync operation on innodb fts table. This leads to block of other transaction commit. To avoid this failure, remove the fulltext sync operation during transaction commit. So reverted MDEV-25581 related patches. We filed MDEV-31105 to avoid the memory consumption problem during fulltext sync operation.
This commit is contained in:
@@ -19,7 +19,7 @@ INSERT INTO t2 VALUES('mariadb');
|
||||
connection default;
|
||||
SET @saved_dbug = @@GLOBAL.debug_dbug;
|
||||
SET GLOBAL debug_dbug ='+d,fts_instrument_sync_request,ib_optimize_wq_hang';
|
||||
SET DEBUG_SYNC= 'fts_sync_end
|
||||
SET DEBUG_SYNC= 'fts_instrument_sync_request
|
||||
SIGNAL drop_index_start WAIT_FOR sync_op';
|
||||
INSERT INTO t1 VALUES('Keyword');
|
||||
connect con1,localhost,root,,,;
|
||||
|
Reference in New Issue
Block a user