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

Avoid extending of tablespace frequently

Details

    Description

      Altering the table using bulk insert algorithm increases the file size
      by 4mb in some cases. Without MDEV-26740, file size increases by 8mb.
      So we should find out where the bulk insert extends the file size unnecessarily.

      Test case:

      --source include/have_innodb.inc
      --source include/have_sequence.inc
       
      CREATE TABLE s (id varchar(255) PRIMARY KEY, d mediumblob NOT NULL)
      ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
       
      INSERT INTO s SELECT UUID(),repeat('x',255) FROM seq_1_to_1000000;
      let $datadir=`SELECT @@datadir`;
      --exec wc -c $datadir/test/s.ibd
      DELETE FROM s LIMIT 100000;
      INSERT INTO s SELECT UUID(),repeat('x',255) FROM seq_1_to_100000;
      --exec wc -c $datadir/test/s.ibd
      390070272 /home/thiru/mariadb_parent/server/10.6-work/bld_work-debug/mysql-test/var/mysqld.1/data//test/s.ibd
       
       
      ALTER TABLE s FORCE, ALGORITHM=INPLACE;
      --exec wc -c $datadir/test/s.ibd
       
      394264576 /home/thiru/mariadb_parent/server/10.6-work/bld_work-debug/mysql-test/var/mysqld.1/data//test/s.ibd
       
      ...
       
      ALTER TABLE s FORCE, ALGORITHM=COPY;
      --exec wc -c $datadir/test/s.ibd
      356515840 /home/thiru/mariadb_parent/server/10.6-work/bld_work-debug/mysql-test/var/mysqld.1/data//test/s.ibd
       
      DROP TABLE s;
      

      Attachments

        Activity

          thiru Thirunarayanan Balathandayuthapani created issue -
          thiru Thirunarayanan Balathandayuthapani made changes -
          Field Original Value New Value
          Fix Version/s 10.6 [ 24028 ]
          Fix Version/s 10.10 [ 27530 ]
          Fix Version/s 10.11 [ 27614 ]
          Fix Version/s 11.0 [ 28320 ]
          Fix Version/s 11.3 [ 28565 ]
          thiru Thirunarayanan Balathandayuthapani made changes -
          Status Open [ 1 ] In Progress [ 3 ]
          thiru Thirunarayanan Balathandayuthapani made changes -
          Assignee Thirunarayanan Balathandayuthapani [ thiru ] Marko Mäkelä [ marko ]
          Status In Progress [ 3 ] In Review [ 10002 ]
          thiru Thirunarayanan Balathandayuthapani made changes -
          Summary Inplace algorithm occupies more disk space compared to copy algorithm Avoid extending of tablespace frequently
          ralf.gebhardt Ralf Gebhardt made changes -
          Fix Version/s 10.10 [ 27530 ]
          marko Marko Mäkelä made changes -
          Assignee Marko Mäkelä [ marko ] Thirunarayanan Balathandayuthapani [ thiru ]
          Status In Review [ 10002 ] Stalled [ 10000 ]
          thiru Thirunarayanan Balathandayuthapani made changes -
          Status Stalled [ 10000 ] In Progress [ 3 ]
          thiru Thirunarayanan Balathandayuthapani made changes -
          Fix Version/s 10.6.18 [ 29627 ]
          Fix Version/s 10.6 [ 24028 ]
          Fix Version/s 10.11 [ 27614 ]
          Fix Version/s 11.0 [ 28320 ]
          Fix Version/s 11.3 [ 28565 ]
          Resolution Fixed [ 1 ]
          Status In Progress [ 3 ] Closed [ 6 ]
          JIraAutomate JiraAutomate made changes -
          Fix Version/s 10.11.8 [ 29630 ]
          Fix Version/s 11.0.6 [ 29628 ]
          Fix Version/s 11.1.5 [ 29629 ]
          Fix Version/s 11.2.4 [ 29631 ]

          People

            thiru Thirunarayanan Balathandayuthapani
            thiru Thirunarayanan Balathandayuthapani
            Votes:
            0 Vote for this issue
            Watchers:
            2 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.