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

« back to all changes in this revision

Viewing changes to plugin/myisam/docs/index.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
.. _myisam_plugin:
 
2
 
 
3
MyISAM Storage Engine
 
4
=====================
 
5
 
 
6
The :program:`myisam` plugin provides the classic MySQL MyISAM storage engine.
 
7
Unlike MySQL, however, the :doc:`/plugins/innobase/index` is the
 
8
default storage engine in Drizzle.
 
9
 
 
10
.. _myisam_loading:
 
11
 
 
12
Loading
 
13
-------
 
14
 
 
15
This plugin is loaded by default, but it may need to be configured.  See
 
16
the plugin's :ref:`myisam_configuration` and
 
17
:ref:`myisam_variables`.
 
18
 
 
19
To stop the plugin from loading by default, start :program:`drizzled`
 
20
with::
 
21
 
 
22
   --plugin-remove=myisam
 
23
 
 
24
.. seealso:: :ref:`drizzled_plugin_options` for more information about adding and removing plugins.
 
25
 
 
26
.. _myisam_configuration:
 
27
 
 
28
Configuration
 
29
-------------
 
30
 
 
31
These command line options configure the plugin when :program:`drizzled`
 
32
is started.  See :ref:`command_line_options` for more information about specifying
 
33
command line options.
 
34
 
 
35
.. program:: drizzled
 
36
 
 
37
.. option:: --myisam.max-sort-file-size ARG
 
38
 
 
39
   :Default: INT32_MAX
 
40
   :Variable: :ref:`myisam_max_sort_file_size <myisam_max_sort_file_size>`
 
41
 
 
42
   Don't use the fast sort index method to created index if the temporary file would get bigger than this.
 
43
 
 
44
.. option:: --myisam.sort-buffer-size ARG
 
45
 
 
46
   :Default: 8388608 (8M)
 
47
   :Variable: :ref:`myisam_sort_buffer_size <myisam_sort_buffer_size>`
 
48
 
 
49
   The buffer that is allocated when sorting the index when doing a REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE.
 
50
 
 
51
.. _myisam_variables:
 
52
 
 
53
Variables
 
54
---------
 
55
 
 
56
These variables show the running configuration of the plugin.
 
57
See `variables` for more information about querying and setting variables.
 
58
 
 
59
.. _myisam_max_sort_file_size:
 
60
 
 
61
* ``myisam_max_sort_file_size``
 
62
 
 
63
   :Scope: Global
 
64
   :Dynamic: No
 
65
   :Option: :option:`--myisam.max-sort-file-size`
 
66
 
 
67
   Don't use the fast sort index method to created index if the temporary file would get bigger than this.
 
68
 
 
69
.. _myisam_sort_buffer_size:
 
70
 
 
71
* ``myisam_sort_buffer_size``
 
72
 
 
73
   :Scope: Global
 
74
   :Dynamic: No
 
75
   :Option: :option:`--myisam.sort-buffer-size`
 
76
 
 
77
   The buffer that is allocated when sorting the index when doing a REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE.
 
78
 
 
79
.. _myisam_examples:
 
80
 
 
81
.. _myisam_authors:
 
82
 
 
83
Authors
 
84
-------
 
85
 
 
86
MySQL AB
 
87
 
 
88
.. _myisam_version:
 
89
 
 
90
Version
 
91
-------
 
92
 
 
93
This documentation applies to **myisam 2.0**.
 
94
 
 
95
To see which version of the plugin a Drizzle server is running, execute:
 
96
 
 
97
.. code-block:: mysql
 
98
 
 
99
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='myisam'
 
100
 
 
101
Changelog
 
102
---------
 
103
 
 
104
v2.0
 
105
^^^^
 
106
* First Drizzle version.