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

LP:992983 - Aborted_clients metric is growing up even though formal connection close

Details

    • Bug
    • Status: Closed (View Workflow)
    • Resolution: Fixed
    • None
    • None
    • None

    Description

      I tested MariaDB 5.5.23 with sysbench.
      And that time, Aborted_clients metric value is not much grew up.

      But, After I applied MariaDB to production database,
      Aborted_clients is growing up ever even though normal close of client side.

      So, I tested same code with MySQL 5.5.23 community version. But it's okay.

      And, MariaDB(with ThreadPool)'s memory usage is really stable under 2GB(Buffer pool is not including)
      when I test with sysbench.
      But in real service (java application), memory usage is growing up over 6~7GB(without BufferPool).
      I'm not sure Aborted_clients metric is related with this memory usage.
      Could you check this out ?

      Thanks.

      after test status----------------------------------------------------------------------------------
      root@localhost:(none) 10:22:10>show global status like 'Aborted_clients';
      ----------------------+

      Variable_name Value

      ----------------------+

      Aborted_clients 100

      ----------------------+

      mysql> show global status like 'Aborted_clients';
      ----------------------+

      Variable_name Value

      ----------------------+

      Aborted_clients 0

      ----------------------+

      test code --------------------------------------------------------------------------------------------
      public class AbortedClientsTester {
      public static void main(String[] args) throws Exception {
      Connection[] conns = new Connection[100];

      for(int idx=0; idx<100; idx++)

      { conns[idx] = getConnection(); }

      Thread.sleep(1000*10);

      for(int idx=0; idx<100; idx++)

      { conns[idx].close(); }

      }

      protected static Connection getConnection() throws Exception

      { String driver = "com.mysql.jdbc.Driver"; String url = "jdbc:mysql://127.0.0.1:3306/sysbench"; String uid = "sysbench"; String pwd = "sysbench"; Class.forName(driver).newInstance(); Connection conn = DriverManager.getConnection(url, uid, pwd); return conn; }

      }

      Attachments

        1. LPexportBug992983.xml
          16 kB
          Rasmus Johansson

        Activity

          Transition Time In Source Status Execution Times
          Rasmus Johansson (Inactive) made transition -
          Closed Reopened
          155d 9h 22m 1
          Rasmus Johansson (Inactive) made transition -
          Reopened Closed
          1h 28m 1

          People

            wlad Vladislav Vaintroub
            matt Matt (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 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.