Track2SQL

From PDWiki

Jump to: navigation, search


//guest/stewart_lord/track2sql/track2sql.php

//guest/stewart_lord/track2sql/README


                   T  R  A  C  K  2  S  Q  L
                 -----------------------------
                   a server log analysis tool


  Copyright (c) 2008, Perforce Software, Inc.  All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions are met:

  1.  Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.

  2.  Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  ARE DISCLAIMED. IN NO EVENT SHALL PERFORCE SOFTWARE, INC. BE LIABLE FOR ANY
  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


 Description

   Track2sql takes a VTRACK log file (server version 2005.2 or
   greater) as input, and produces an SQL file as output. It
   requires a PHP command-line interpreter and an SQL database.
   It has been tested with PHP version 5, but might be compatible
   with earlier versions. It has been tested with MySQL version 5
   but should be compatible with other SQL databases.


 Usage

   php track2sql.php [ logFile | - [ sqlFile | - ] ] [ -d dbName ]

    Options:
      logFile     name of input file or '-' for stdin
      sqlFile     name of output file or '-' for stdout
      -d          name of database to create
      -v|V|h      view version and usage information

    Examples:
      $ track2sql.php log track.sql -d track
      $ cat log | track2sql.php | mysql
      $ tail -F log | track2sql.php | mysql


 Application

   The power of SQL allows us to analyze the server log data in
   many different ways. In particular, track2sql is an effective
   tool for identifying performance problems. If you are
   experiencing poor performance, try the following steps to
   illuminate the culprits.

    1. Convert your log file to sql.

        track2sql.php logFile -d dbName | mysql

    2. Launch your SQL client

        mysql dbName

    3. Identify commands with long compute-phases.

        mysql> SELECT
                process.processKey,user,cmd,
                MAX(readHeld+writeHeld)-MAX(readWait+writeWait)
                AS compute
               FROM tableUse JOIN process USING (processKey)
               GROUP BY tableUse.processKey
               ORDER BY compute DESC LIMIT 25;

       This will produce a list of 25 processes that held locks
       on one or more database tables for an extended period
       of time. During these periods of time, it is possible
       that the offending processes blocked other processes,
       thereby degrading performance.

          +------------+------+-----------+---------+
          | processKey | user | cmd       | compute |
          +------------+------+-----------+---------+
          |      12345 | jdoe | user-sync |   98765 |
          |        ... |  ... |       ... |     ... |
          +------------+------+-----------+---------+

       FOR EACH OFFENSIVE PROCESS:

         a. Get process information.

             mysql> SELECT * FROM process
                    WHERE processKey=12345;

         b. Get table usage information.

             mysql> SELECT * FROM tableUse
                    WHERE processKey=12345;

         c. Identify bottlenecks and take action.
            This last step can be difficult. Keep in mind that
            in general, performance can be improved three ways:

              -> By improving hardware (memory, disks, cpu)
              -> By upgrading software (perforce server/clients, OS)
              -> By adjusting usage (reducing scope of commands)


 Schema

    +------------+---------------+------+-----+
    | P R O C E S S                           |
    +------------+---------------+------+-----+
    | Field      | Type          | Null | Key |
    +------------+---------------+------+-----+
    | processKey | int(11)       | NO   | PRI |
    | time       | int(11)       | NO   |     |
    | pid        | int(11)       | NO   |     |
    | user       | varchar(255)  | NO   |     |
    | client     | varchar(255)  | NO   |     |
    | ip         | varchar(255)  | NO   |     |
    | app        | varchar(255)  | NO   |     |
    | cmd        | varchar(255)  | NO   |     |
    | args       | text          | YES  |     |
    | lapse      | decimal(10,3) | YES  |     |
    | uCpu       | int(11)       | YES  |     |
    | sCpu       | int(11)       | YES  |     |
    | diskIn     | int(11)       | YES  |     |
    | diskOut    | int(11)       | YES  |     |
    | ipcIn      | int(11)       | YES  |     |
    | ipcOut     | int(11)       | YES  |     |
    | maxRss     | int(11)       | YES  |     |
    | pageFaults | int(11)       | YES  |     |
    | rpcMsgsIn  | int(11)       | YES  |     |
    | rpcMsgsOut | int(11)       | YES  |     |
    | rpcSizeIn  | int(11)       | YES  |     |
    | rpcSizeOut | int(11)       | YES  |     |
    +------------+---------------+------+-----+

    +-------------+--------------+------+-----+
    | T A B L E   U S E                       |
    +-------------+--------------+------+-----+
    | Field       | Type         | Null | Key |
    +-------------+--------------+------+-----+
    | processKey  | int(11)      | NO   | PRI |
    | tableName   | varchar(255) | NO   | PRI |
    | pagesIn     | int(11)      | YES  |     |
    | pagesOut    | int(11)      | YES  |     |
    | pagesCached | int(11)      | YES  |     |
    | readLocks   | int(11)      | YES  |     |
    | writeLocks  | int(11)      | YES  |     |
    | getRows     | int(11)      | YES  |     |
    | posRows     | int(11)      | YES  |     |
    | scanRows    | int(11)      | YES  |     |
    | putRows     | int(11)      | YES  |     |
    | delRows     | int(11)      | YES  |     |
    | readWait    | int(11)      | YES  |     |
    | readHeld    | int(11)      | YES  |     |
    | writeWait   | int(11)      | YES  |     |
    | writeHeld   | int(11)      | YES  |     |
    +-------------+--------------+------+-----+


Recent Changes RSS_Feed.gif

  • Change 7104 on 2009/01/02 by stewart_lord@stewart_lord_mac_pro
      Follow-on to 7098. The quote() function now wraps and
      escapes the given string.
  • Change 7098 on 2008/12/31 by stewart_lord@stewart_lord_mac_pro
      Fixed a sqlite incompatibility. Backslash is not a valid way
      to escape quotes in sqlite. Quote-quote ('') is valid in both
      mysql and sqlite.
      Replaced use of addslashes with a quote() function that
      replaces occurrences of single-quotes with two single quotes.
  • Change 6424 on 2008/07/30 by stewart_lord@stewart_lord_g5
      Updated track2sql disclaimer. Addded a link to the
      readme file from the script itself.
  • Change 6379 on 2008/06/06 by stewart_lord@stewart_lord_g5
      Fixed a bug where track2sql failed to properly extract
      some table usage data if 'pages reordered' were reported.
  • Change 6289 on 2008/03/19 by stewart_lord@stewart_lord_g5
      Minor update to track2sql.
      - Added version and usage information. Can be viewed
      with -v, -V or -h.
      - Added error handling for the case of a non-existent
      input file or a empty input file.
      - Removed 'drop table if exists' statements from the
      table creation SQL.
Personal tools