~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to docs/replication/replicators/default.rst

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.. _default_replicator:
 
2
 
 
3
Default Replicator
 
4
==================
 
5
 
 
6
The default replicator plugin, cleverly named ``default_replicator``,
 
7
does not modify or filter any replication events; it simply sends every
 
8
replication event it receives from the Drizzle kernel to every applier
 
9
with which it is paired.
 
10
 
 
11
:ref:`appliers` default to this replicator.
 
12
 
 
13
.. _default_replicator_loading:
 
14
 
 
15
Loading
 
16
-------
 
17
 
 
18
This plugin is loaded by default.   To stop the plugin from loading by
 
19
default, start :program:`drizzled` with::
 
20
 
 
21
   --plugin-remove=default_replicator
 
22
 
 
23
.. seealso:: :ref:`drizzled_plugin_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.