Navigation Menu

Skip to content

Commit

Permalink
doc: add mroonga_enable_operations_recording variable
Browse files Browse the repository at this point in the history
  • Loading branch information
naoa committed Aug 13, 2017
1 parent c9f82bc commit 9bb487e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions doc/source/reference/server_variables.rst
Expand Up @@ -471,6 +471,33 @@ value.

TODO:

.. _server-variable-mroonga-enable-operations-recording:

``mroonga_enable_operations_recording``
---------------------------------------

Whether recording operations for recover is enabled or not.
The default value is ``ON`` that means operations are recording
to Groonga database.
It needs to reopen the database with `` FLUSH TABLES`` in order
to reflect the variable is changed.

Here is an example SQL to disable operations recording::


mysql> SET GLOBAL mroonga_enable_operations_recording = false;
Query OK, 0 rows affected (0.00 sec)

mysql> FLUSH TABLES;
Query OK, 0 rows affected (0.00 sec)

mysql> SHOW GLOBAL VARIABLES LIKE 'mroonga_enable_operations_recording';
+-------------------------------------+-------+
| Variable_name | Value |
+-------------------------------------+-------+
| mroonga_enable_operations_recording | OFF |
+-------------------------------------+-------+

.. _server-variable-mroonga-vector-column-delimiter:

``mroonga_vector_column_delimiter``
Expand Down

0 comments on commit 9bb487e

Please sign in to comment.