1. 09 Dec, 2018 20 commits
    • Sergey Vojtovich's avatar
      Acquire global read lock (MDL_BACKUP_STMT) after share is acquired · f1867505
      Sergey Vojtovich authored
      Part of MDEV-5336 Implement LOCK FOR BACKUP
      
      FLUSH TABLE table_names have changed slighty as we are now opening
      tables before taking the MDL lock. The difference is that FLUSH TABLE
      table_name will now be blocked by a table that is waiting for FTWRL.
      There should not be any new deadlocks as part of this change.
      
      The end result is still better in most cases as FTWRL is now only
      waiting for write statements to end, not for read only statements and
      it's not flushing tables in use from the table cache.
      
      Share will be needed to be able to determine if table supports online
      backup. Appropriate metadata lock type in BACKUP namespace will be
      acquired basing on this information.
      
      Also made pending global read lock request to be preferred victim of MDL
      deadlock detector. This allows us to hide some non-fatal deadlocks and
      make FTWRL less likely to break concurrent queries.
      f1867505
    • Sergey Vojtovich's avatar
      Combine GLOBAL and COMMIT namespaces into BACKUP namespace. · 7a9dfdd8
      Sergey Vojtovich authored
      Part of MDEV-5336 Implement LOCK FOR BACKUP
      
      Other things:
      - Added printing of MDL locks to DBUG.
      7a9dfdd8
    • Monty's avatar
      Changed FLUSH TABLES to not change share version · 7fb9d649
      Monty authored
      Part of MDEV-5336 Implement LOCK FOR BACKUP
      
      Originally both table metadata lock and global read lock protection
      were acquired before getting TABLE from table cache. This will be
      reordered in a future commit with MDL_BACKUP_XXX locks so that we
      first take table metadata lock, then get TABLE from table cache, then
      acquire analogue of global read lock.
      
      This patch both simplifies FLUSH TABLES code, makes FLUSH TABLES to
      lock less and also enables FLUSH TABLES code to be used with backup
      locks.
      
      The usage of FLUSH TABLES changes slightly:
      - FLUSH TABLES without any arguments will now only close not used tables
        and tables locked by the FLUSH TABLES connection.  All not used table
        shares will be closed.
        Tables locked by the FLUSH TABLES connection will be reopened and
        re-locked after all others has stoped using the table (as before).
        If there was no locked tables, then FLUSH TABLES is instant and will
        not cause any waits.
        FLUSH TABLES will not wait for any in use table.
      - FLUSH TABLES with a table list, will ensure that the tables are closed
        before statement returns. The code is now only using MDL locks and not
        table share versions, which simplices the code greatly. One visible
        change is that the server will wait for the end of the transaction that
        are using the tables. Before FLUSH TABLES only waited for the statements
        to end.
      Signed-off-by: default avatarMonty <monty@mariadb.org>
      7fb9d649
    • Monty's avatar
      Fixed race condition between flush tables and insert delayed · 7bb3a522
      Monty authored
      FLUSH TABLES kills all insert delayed treads. If this happens at same time
      as a newly started insert delayed query, the insert may fail with either
      and error ("Query interrupted") or the row may be lost.
      This patch fixes this by changing a failed attempt of get_delay_table() to
      convert the query to use a normal insert.
      
      The test case for this patch can be found in the FLUSH TABLES commit after
      this one.
      7bb3a522
    • Monty's avatar
      Optimize flush tables with read lock (FTWRL) to not wait for select's · 163b34fe
      Monty authored
      Part of MDEV-5336 Implement LOCK FOR BACKUP
      
      The idea is that instead of waiting in close_cached_tables() for all
      tables to be closed, we instead call flush_tables() that does:
      - Flush not used objects in table cache to free memory
      - Collect all tables that are open
      - Call HA_EXTRA_FLUSH on the objects, to get them into "closed state"
      - Added HA_EXTRA_FLUSH support to archive and CSV
      - Added multi-user protection to HA_EXTRA_FLUSH in MyISAM and Aria
      
      The benefit compared to old code is:
      - FTWRL doesn't have to wait for long running read operations or
        open HANDLER's
      163b34fe
    • Monty's avatar
      Added API for copying aria tables in mariabackup · 306b7a22
      Monty authored
      306b7a22
    • Monty's avatar
      2aff2f2f
    • Monty's avatar
      Added backup handler calls · 1077f320
      Monty authored
      Part of MDEV-5336 Implement LOCK FOR BACKUP
      
      Added support for backup calls in Aria to protect
      removal of redo logs.
      1077f320
    • Monty's avatar
      Fixed that CREATE TABLE code used the right create_info · ecdf9792
      Monty authored
      - The old code used the original create_info from lex, not the new one
        that includes more information (like OPT_OR_REPLACE).
        The bug was not discovered as the code in lock_table_named() only
        checked for OPT_OR_REPLACE in case of timeout errors.
        As lock_table_names will be fixed as part of BACKUP STAGE's, there
        is no changes in lock_table_names() in this commit.
      - Removed also the 'temporary' copy of statement flags to thd for
        lock_table_names()
      ecdf9792
    • Monty's avatar
      Added timing of bootstrap to mtr · 4f541c5f
      Monty authored
      4f541c5f
    • Monty's avatar
      Cleaned up some MTR tests · 5280af2b
      Monty authored
      - Moved tests depending on utf8 characters from create to create_utf8
      - Fixed some tests in create and sp that wrongly tried to create table
        from non existing table on existing table.  In a later patch we may
        first check if table exists, in which case the error message would
        change.
      - Updated results for partition_debug_tokudb
      5280af2b
    • Monty's avatar
      Fixed test case bug in purge_thread_shutdown · dc91330d
      Monty authored
      dc91330d
    • Monty's avatar
      8561a0ac
    • Monty's avatar
      Fixed BUILD scripts to by default work with galera and tokudb · 84c0563a
      Monty authored
      Bascially this means that all builds with BUILD scripts are done with
      --with-jemalloc=NO      # Required by tokudb
      --with-ssl              # Required on OpenSuse 10.5 to get galera to work
      84c0563a
    • Monty's avatar
      Add --without-wsrep option to BUILD scripts · c8250ed6
      Monty authored
      c8250ed6
    • Monty's avatar
      fa8d7f36
    • Monty's avatar
      Changed some MySQL names in messages to MariaDB · c82855d8
      Monty authored
      - Remove obsolete documentation files
      - Removed old obsolete information from some documentation files
      c82855d8
    • Monty's avatar
      Simple cleanups (no logic changes) · ae58cd6b
      Monty authored
      ae58cd6b
    • Varun Gupta's avatar
      MDEV-17255: New optimizer defaults and ANALYZE TABLE · 9207a838
      Varun Gupta authored
      Added to new values to the server variable use_stat_tables.
      The values are COMPLEMENTARY_FOR_QUERIES and PREFERABLY_FOR_QUERIES.
      Both these values don't allow to collect EITS for queries like
          analyze table t1;
      To collect EITS we would need to use the syntax with persistent like
         analyze table t1 persistent for columns (col1,col2...) index (idx1, idx2...) / ALL
      
      Changing the default value from NEVER to PREFERABLY_FOR_QUERIES.
      9207a838
    • Varun Gupta's avatar
      MDEV-15253: Default optimizer setting changes for MariaDB 10.4 · 93c360e3
      Varun Gupta authored
      use_stat_tables= PREFERABLY
      optimizer_use_condition_selectivity= 4
      93c360e3
  2. 08 Dec, 2018 3 commits
  3. 07 Dec, 2018 13 commits
  4. 06 Dec, 2018 4 commits