Falcon (storage engine)

From Wikipedia, the free encyclopedia

Falcon
Design by Jim Starkey
Developed by Sun Microsystems
Preview release MySQL 6.0.4 / February 12, 2008 (2008-02-12); 120 days ago
OS Cross-platform
Genre Database engine
License GNU General Public License
Website http://www.mysql.com/mysql60/

Falcon is a new transactional storage engine for the MySQL relational database management system. It is currently in the beta stage of development, being worked at in a development tree based on the MySQL 5.2 release, called MySQL 6.0. It is based on the Netfrastructure database engine.

Architecture analysis shows an interesting mixture of possible performance properties, while low level benchmarks on the first alpha release in 5.1.14-falcon showed that Falcon performed differently from both InnoDB (supplied by Oracle) and MyISAM. It did better in several tests, worse in others, with inefficient support for the MySQL LIMIT operation a limitation. Its biggest advantage though is known to be ease of use; Falcon requires minimum maintenance and designed to reconfigure itself automatically to handle efficiently all types of loads.

[edit] Architecture

The architecture of the Falcon engine consists of seven basic components:

  1. User tablespaces: contains the actual user data and indexes stored in a Falcon database.
  2. Falcon serial log: contains recently committed data changes, index changes, and transactional information. The log also handles crash recovery activities for a database.
  3. Page cache: memory region that holds database pages being read or written.
  4. System metadata: Falcon's system tablespace that holds internal information.
  5. Record cache: memory region that holds copies of active and uncommitted records.
  6. System cache: memory region that contains transaction context information, index accelerators, and system metadata.
  7. Worker threads: moves data from the Falcon Log into the database page cache, from the page cache to disk, and performs BLOB management.

[edit] See also

[edit] External links