Default Replicator

The default replicator plugin, cleverly named default_replicator, does not modify or filter any replication events; it simply sends every replication event it receives from the Drizzle kernel to every applier with which it is paired.

Appliers default to this replicator.

Loading

This plugin is loaded by default. To stop the plugin from loading by default, start drizzled with:

--plugin-remove=default_replicator

See also

Plugin Options for more information about adding and removing plugins.

Configuration

This plugin does not have any command line options.

Variables

This plugin does not register any variables.

Authors

Jay Pipes

Version

This documentation applies to default_replicator 1.0.

To see which version of the plugin a Drizzle server is running, execute:

SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='default_replicator'

Changelog

v1.0

  • First release.

Table Of Contents

Previous topic

Replicators

Next topic

Filtered Replicator

This Page