14.10. The BLACKHOLE Storage Engine

MySQL 5.0

14.10. The BLACKHOLE Storage Engine

The storage engine acts as a “black hole” that accepts data but throws it away and does not store it. Retrievals always return an empty result:

mysql> 
Query OK, 0 rows affected (0.03 sec)

mysql> 
Query OK, 2 rows affected (0.00 sec)
Records: 2  Duplicates: 0  Warnings: 0

mysql> 
Empty set (0.00 sec)

The storage engine is included in MySQL-Max binary distributions. To enable this storage engine if you build MySQL from source, invoke configure with the option.

To examine the source for the engine, look in the directory of a MySQL source distribution.

When you create a table, the server creates a table format file in the database directory. The file begins with the table name and has an extension. There are no other files associated with the table.

The storage engine supports all kinds of indexes. That is, you can include index declarations in the table definition.

You can check whether the storage engine is available with this statement:

mysql> 

Inserts into a table do not store any data, but if the binary log is enabled, the SQL statements are logged (and replicated to slave servers). This can be useful as a repeater or filter mechanism. For example, suppose that your application requires slave-side filtering rules, but transferring all binary log data to the slave first results in too much traffic. In such a case, it is possible to set up on the master host a “dummy” slave process whose default storage engine is , depicted as follows:

Replication using BLACKHOLE         for filtering

The master writes to its binary log. The “dummymysqld process acts as a slave, applying the desired combination of and rules, and writes a new, filtered binary log of its own. (See Section 6.8, “Replication Startup Options”.) This filtered log is provided to the slave.

The dummy process does not actually store any data, so there is little processing overhead incurred by running the additional mysqld process on the replication master host. This type of setup can be repeated with additional replication slaves.

Other possible uses for the storage engine include:

  • Verification of dump file syntax.

  • Measurement of the overhead from binary logging, by comparing performance using with and without binary logging enabled.

  • is essentially a “no-op” storage engine, so it could be used for finding performance bottlenecks not related to the storage engine itself.