[Groonga-mysql-commit] mroonga/mroonga at 9bb487e [master] doc: add mroonga_enable_operations_recording variable

Back to archive index

Naoya Murakami null+****@clear*****
Sun Aug 13 18:42:40 JST 2017


Naoya Murakami	2017-08-13 18:42:40 +0900 (Sun, 13 Aug 2017)

  New Revision: 9bb487ebf54025fab3adfed32dd9730714f655ca
  https://github.com/mroonga/mroonga/commit/9bb487ebf54025fab3adfed32dd9730714f655ca

  Merged fe283c0: Merge pull request #158 from naoa/add-option-for-disable-record-operation

  Message:
    doc: add mroonga_enable_operations_recording variable

  Modified files:
    doc/source/reference/server_variables.rst

  Modified: doc/source/reference/server_variables.rst (+27 -0)
===================================================================
--- doc/source/reference/server_variables.rst    2017-08-13 18:42:10 +0900 (c90ca585)
+++ doc/source/reference/server_variables.rst    2017-08-13 18:42:40 +0900 (1537d8c1)
@@ -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``
-------------- next part --------------
HTML����������������������������...
Descargar 



More information about the Groonga-mysql-commit mailing list
Back to archive index