Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-27047

replication does not remove affected queries from query cache

Details

    Description

      Since the upgrade to MariaDB 10.5.13 we are facing the problem where replication no longer removes affected queries from the query cache.

      We have this problem on at least two independent systems.

      How to reproduce

      On replication master:
      > create table test (number_col int);
      > insert into test set number_col=1;

      On slave:
      > select * from test;

      +------------+
      | number_col |
      +------------+
      |          1 |
      +------------+
      1 row in set (0.001 sec)

      On master:
      > insert into test set number_col=2;

      On slave:
      > select * from test;

      +------------+
      | number_col |
      +------------+
      |          1 |
      +------------+
      1 row in set (0.001 sec)

      > select SQL_NO_CACHE * from test;

      +------------+
      | number_col |
      +------------+
      |          1 |
      |          2 |
      +------------+
      2 rows in set (0.001 sec)

      with kind regards,

      Joerg

      Attachments

        1. db01.cnf
          0.8 kB
        2. db03.cnf
          1.0 kB

        Issue Links

          Activity

            alice Alice Sherepa added a comment -

            could you please add your .cnf file(s). I tried to repeat it, but failed

            alice Alice Sherepa added a comment - could you please add your .cnf file(s). I tried to repeat it, but failed
            Joerg Michels Joerg Michels added a comment -

            db01.cnf is from master
            db03.cnf is from slave

            Joerg Michels Joerg Michels added a comment - db01.cnf is from master db03.cnf is from slave
            alice Alice Sherepa added a comment -

            Thank you!
            I reproduced as described on 10.5-10.7, with row binlog format.

            -- source include/have_binlog_format_row.inc
            -- source include/have_innodb.inc
            -- source include/master-slave.inc
             
            --connection slave
            SET @qtype= @@global.query_cache_type;
            SET GLOBAL query_cache_type= ON;
            SET query_cache_type= ON;
             
            --connection master
            create table t1 (i int) engine=innodb;
            insert into t1 set i=1;
             
            --sync_slave_with_master
             
            select * from t1;
            --connection master
            insert into t1 set i=2;
             
            --sync_slave_with_master
            select * from t1;
             
            select sql_no_cache * from t1;
             
            --connection master
            DROP TABLE t1;
            --sync_slave_with_master
            SET GLOBAL query_cache_type= @qtype;
            --source include/rpl_end.inc
            

            alice Alice Sherepa added a comment - Thank you! I reproduced as described on 10.5-10.7, with row binlog format. -- source include/have_binlog_format_row.inc -- source include/have_innodb.inc -- source include/master-slave.inc   --connection slave SET @qtype= @@ global .query_cache_type; SET GLOBAL query_cache_type= ON ; SET query_cache_type= ON ;   --connection master create table t1 (i int ) engine=innodb; insert into t1 set i=1;   --sync_slave_with_master   select * from t1; --connection master insert into t1 set i=2;   --sync_slave_with_master select * from t1;   select sql_no_cache * from t1;   --connection master DROP TABLE t1; --sync_slave_with_master SET GLOBAL query_cache_type= @qtype; --source include/rpl_end.inc

            caused by merge 5f8561a6bc, in particular:

            --- a/sql/log_event_server.cc
            +++ b/sql/log_event_server.cc
            @@ -5573,20 +5573,14 @@ int Rows_log_event::do_apply_event(rpl_group_info *rgi)
                   }
                 }
             
            -#ifdef HAVE_QUERY_CACHE
            -#ifdef WITH_WSREP
            +#if defined(WITH_WSREP) && defined(HAVE_QUERY_CACHE)
                 /*
                   Moved invalidation right before the call to rows_event_stmt_cleanup(),
                   to avoid query cache being polluted with stale entries,
                 */
            -    if (! (WSREP(thd) && wsrep_thd_is_applying(thd)))
            -    {
            -#endif /* WITH_WSREP */
            +    if (WSREP(thd) && wsrep_thd_is_applying(thd))
                   query_cache.invalidate_locked_for_write(thd, rgi->tables_to_lock);
            -#ifdef WITH_WSREP
            -    }
            -#endif /* WITH_WSREP */
            -#endif
            +#endif /* WITH_WSREP && HAVE_QUERY_CACHE */
               }
             
               table= m_table= rgi->m_table_map.get_table(m_table_id);
            

            which reverted the condition in if(). And also disabled query cache invalidation when WSREP is not compiled in.

            serg Sergei Golubchik added a comment - caused by merge 5f8561a6bc, in particular: --- a/sql/log_event_server.cc +++ b/sql/log_event_server.cc @@ -5573,20 +5573,14 @@ int Rows_log_event::do_apply_event(rpl_group_info *rgi) } } -#ifdef HAVE_QUERY_CACHE -#ifdef WITH_WSREP +#if defined(WITH_WSREP) && defined(HAVE_QUERY_CACHE) /* Moved invalidation right before the call to rows_event_stmt_cleanup(), to avoid query cache being polluted with stale entries, */ - if (! (WSREP(thd) && wsrep_thd_is_applying(thd))) - { -#endif /* WITH_WSREP */ + if (WSREP(thd) && wsrep_thd_is_applying(thd)) query_cache.invalidate_locked_for_write(thd, rgi->tables_to_lock); -#ifdef WITH_WSREP - } -#endif /* WITH_WSREP */ -#endif +#endif /* WITH_WSREP && HAVE_QUERY_CACHE */ } table= m_table= rgi->m_table_map.get_table(m_table_id); which reverted the condition in if() . And also disabled query cache invalidation when WSREP is not compiled in.

            People

              marko Marko Mäkelä
              Joerg Michels Joerg Michels
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.