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

Slow file extend when innodb_use_fallocate=1 and SSD file storage

    XMLWordPrintable

Details

    • Bug
    • Status: Closed (View Workflow)
    • Minor
    • Resolution: Fixed
    • 5.5.36, 10.0.8
    • 5.5.37, 10.0.9
    • None
    • None
    • Fusion-IO SSD

    Description

      Currently size is set like:

      current_size = 0;
      desired_size = (ib_int64_t)size + (((ib_int64_t)size_high) << 32);

      #ifdef HAVE_POSIX_FALLOCATE
      if (srv_use_posix_fallocate) {

      if (posix_fallocate(file, current_size, desired_size) == -1) {

      Thus file size is always extended from offset 0 to desired offset. This is clearly slower than doing

      posix_fallocate(real_current_size, desired_size)

      Attachments

        Issue Links

          Activity

            People

              jplindst Jan Lindström (Inactive)
              jplindst Jan Lindström (Inactive)
              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.