~drizzle-trunk/drizzle/development

2397.1.1 by Daniel Nichter
Skeleton documentation for all plugins, more complete docu for first half of plugins.
1
Default Replicator
2
==================
3
4
:program:`default_replicator` is a simple replicator which replicates all
5
write events to all appliers.
6
7
.. seealso:: :doc:`/replication`
8
9
.. _default_replicator_loading:
10
11
Loading
12
-------
13
14
This plugin is loaded by default, but it may need to be configured.  See
15
the plugin's :ref:`default_replicator_configuration` and
16
:ref:`default_replicator_variables`.
17
18
To stop the plugin from loading by default, start :program:`drizzled`
19
with::
20
21
   --plugin-remove=default_replicator
22
23
.. seealso:: :doc:`/options` for more information about adding and removing plugins.
24
25
.. _default_replicator_configuration:
26
27
Configuration
28
-------------
29
30
This plugin does not have any command line options.
31
32
.. _default_replicator_variables:
33
34
Variables
35
---------
36
37
This plugin does not register any variables.
38
39
.. _default_replicator_authors:
40
41
Authors
42
-------
43
44
Jay Pipes
45
46
.. _default_replicator_version:
47
48
Version
49
-------
50
51
This documentation applies to **default_replicator 1.0**.
52
53
To see which version of the plugin a Drizzle server is running, execute:
54
55
.. code-block:: mysql
56
57
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='default_replicator'
58
59
Changelog
60
---------
61
62
v1.0
63
^^^^
64
* First release.