close
The Wayback Machine - https://web.archive.org/web/20130926100927/https://github.com/twitter/mysql
This repository
This repository
All repositories

MySQL fork maintained and used at Twitter

C++CShellPerlOther
branch: master
Switch branches/tags
Nothing to show
Octocat-spinner-32 .bzr-mysql Fix tree setup: Wrong mailing list for commit mails.
Octocat-spinner-32 BUILD Correcting the permissions of the executable files.
Octocat-spinner-32 Docs Merging the changes for Bug 16633169 - MYSQL.INFO CONTAINS OUTDATED I…
Octocat-spinner-32 client Merge tag 'mysql-5.5.33' into MYSQL-184
Octocat-spinner-32 cmake Merge tag 'mysql-5.5.33' into MYSQL-184
Octocat-spinner-32 cmd-line-utils Fix for Bug 16395495 - OLD FSF ADDRESS IN GPL HEADER
Octocat-spinner-32 dbug BUG#16402143 - STACK CORRUPTION IN DBUG_EXPLAIN
Octocat-spinner-32 extra Merge tag 'mysql-5.5.33' into MYSQL-184
Octocat-spinner-32 include Twitter query type statistics
Octocat-spinner-32 libmysql Merge tag 'mysql-5.5.32' into t12-dev
Octocat-spinner-32 libmysqld Twitter query type statistics
Octocat-spinner-32 libservices Updated/added copyright headers
Octocat-spinner-32 man Exclude NDB man pages from a source tarball,
Octocat-spinner-32 mysql-test Revert innodb_fragment_extents test change
Octocat-spinner-32 mysys Twitter query type statistics
Octocat-spinner-32 packaging Removed random passwords feature for Bugfix#17160741 (not applicable …
Octocat-spinner-32 plugin Raise the Twitter version to t8 merge commit 'mysql-5.5.28' into it.
Octocat-spinner-32 regex
Octocat-spinner-32 scripts Merge tag 'mysql-5.5.32' into t12-dev
Octocat-spinner-32 sql-bench Bug #13004581 BLACKHOLE BINARY LOG WITH ROW IGNORES UPDATE AND DELETE…
Octocat-spinner-32 sql-common Bug #16680313: CLIENT DOESN'T READ PLUGIN-DIR FROM MY.CNF SET BY
Octocat-spinner-32 sql Twitter query type statistics
Octocat-spinner-32 storage Merge branch 't12-dev' into MYSQL-184
Octocat-spinner-32 strings Merge tag 'mysql-5.5.33' into MYSQL-184
Octocat-spinner-32 support-files Merge tag 'mysql-5.5.33' into MYSQL-184
Octocat-spinner-32 tests Correcting the permissions of the executable files.
Octocat-spinner-32 unittest Merge tag 'mysql-5.5.33' into MYSQL-184
Octocat-spinner-32 vio Bug#16235681: TURN OFF DEFAULT COMPRESSION WHILE USING
Octocat-spinner-32 win Updated/added copyright headers
Octocat-spinner-32 zlib WL#5665: Removal of the autotools-based build system
Octocat-spinner-32 .bzrfileids Merge from 5.5 to 5.6
Octocat-spinner-32 .bzrignore Raise Twitter MySQL version to t11-dev
Octocat-spinner-32 .reviewboardrc Specify the repository name for Review Board.
Octocat-spinner-32 BUILD-CMAKE Updated/added copyright headers
Octocat-spinner-32 CMakeLists.txt Merge tag 'mysql-5.5.33' into MYSQL-184
Octocat-spinner-32 COPYING Use a new version of "COPYING", the GPL text.
Octocat-spinner-32 INSTALL-SOURCE Merging the changes for Bug 16633169 - MYSQL.INFO CONTAINS OUTDATED I…
Octocat-spinner-32 INSTALL-WIN-SOURCE Merging the changes for Bug 16633169 - MYSQL.INFO CONTAINS OUTDATED I…
Octocat-spinner-32 README-MySQL Merge tag 'mysql-5.5.32' into t12-dev
Octocat-spinner-32 README.md Complete a thought and correct for consistency.
Octocat-spinner-32 VERSION Twitter MySQL 5.5.33.t12
Octocat-spinner-32 config.h.cmake Bug#65830: utf8_general_cs is not available
Octocat-spinner-32 configure.cmake Merge tag 'mysql-5.5.32' into t12-dev
README.md

Twitter MySQL 5.5

This is Twitter's MySQL development branch, which is based on MySQL 5.5 as published by Oracle on MySQL on Launchpad.

This repository is published in order to share code and information and is not intended to be used directly outside of Twitter. We provide no guarantees of bug fixes, ongoing maintenance, compatibility, or suitability for any user outside of Twitter.

The original README file provided with the upstream MySQL release can be found at README-MySQL.

Features in Twitter MySQL

Additional status variables

Additional status variables have been added, particularly from the internals of InnoDB. This allows us to monitor our systems more effectively and understand their behavior better when handling production workloads. The variables added are:

  • The number of InnoDB files and tablespace files opened, closed, and currently open. This information was previously not exposed by InnoDB.
  • The number of deadlocks encountered. This information was previously not exposed by InnoDB.
  • The current log sequence number (LSN) as well as the LSN flushed up to and checkpointed up to. This information has previously been available in SHOW ENGINE INNODB STATUS.

Optimization of memory allocation under NUMA

On most recent multi-processor systems, a non-uniform memory access NUMA (NUMA) architecture is in use, which divides the total system memory across multiple NUMA "nodes". When allocating large amounts of memory to InnoDB's buffer pool, as is typical, some inefficiencies as well as serious problems can be encountered. More details about the problems typical in NUMA systems running MySQL can be found in a blog post by Jeremy Cole. The following changes have been made to optimize and improve this:

  • An option has been added to forcibly pre-allocate the entire buffer pool during startup. This is primarily intended to force the system to decide which pages to allocate, and on which NUMA node to allocate them. If the buffer pool can't be fully allocated for any reason, InnoDB will abort during startup.
  • An option has been added to mysqld_safe to wrap the start of mysqld with numactl --interleave=all to interleave memory allocation between all NUMA nodes available. This ensures that no NUMA node is favored for any allocation, so that memory usage will remain even over time between multiple NUMA nodes.
  • An option has been added to mysqld_safe to flush the operating system buffer caches before startup (on Linux only). Linux will normally not evict optional caches to make new allocations unless the system is under memory pressure, which can cause supposedly evenly interleaved memory allocations to still be done unevenly, favoring the node with less data cached before startup. Flushing the caches before startup ensures that no large cache allocations are present in the system before InnoDB allocates its buffer pool.

Server-side query timeout

  • Reduced unnecessary work through improved server-side statement timeout support. This allows the server to proactively cancel queries that run longer than a millisecond-granularity timeout.

Buffer pool export and restore by prefetch

  • Export and restore InnoDB buffer pool in using a safe and lightweight method. This enables us to build tools to support rolling restarts of our services with minimal pain.

Optimization for solid-state drives (SSDs)

  • Optimize MySQL for SSD-based machines, including page-flushing behavior and reduction in writes to disk to improve lifespan.
Something went wrong with that request. Please try again.