summaryrefslogtreecommitdiff
path: root/doc/source/user/set-up-clustering.rst
blob: e487519ee1989a919050c685b3238bb8dbcfe3a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
==========================
Set up database clustering
==========================

.. caution::

   Database clustering function is still in experimental, should not be used
   in production environment.

You can store data across multiple machines by setting up MongoDB
sharded clusters.

Each cluster includes:

-  One or more *shards*. Each shard consists of a three member replica
   set (three instances organized as a replica set).

-  One or more *query routers*. A query router is the machine that your
   application actually connects to. This machine is responsible for
   communicating with the config server to figure out where the
   requested data is stored. It then accesses and returns the data from
   the appropriate shard(s).

-  One or more *config servers*. Config servers store the metadata that
   links requested data with the shard that contains it.

This example shows you how to set up a MongoDB sharded cluster.

.. note::

   **Before you begin.** Make sure that:

   -  The administrative user has registered a MongoDB datastore type and
      version.

   -  The administrative user has created an appropriate :ref:`flavor that
      meets the MongoDB minimum requirements <create_db>`.

Set up clustering
~~~~~~~~~~~~~~~~~

#. **Create a cluster**

   Create a cluster by using the :command:`openstack database cluster create` command. This
   command creates a one-shard cluster. Pass in:

   -  The name of the cluster.

   -  The name and version of the datastore you want to use.

   -  The three instances you want to include in the replication set for
      the first shard. Specify each instance by using the ``--instance``
      argument and the associated flavor ID and volume size. Use the
      same flavor ID and volume size for each instance. In this example,
      flavor ``7`` is a custom flavor that meets the MongoDB minimum
      requirements.

   .. code-block:: console

      $ openstack database cluster create cluster1 mongodb "2.4" \
        --instance flavor=7,volume=2 --instance flavor=7,volume=2 \
        --instance flavor=7,volume=2
       +-------------------+--------------------------------------+
       | Property          | Value                                |
       +-------------------+--------------------------------------+
       | created           | 2014-08-16T01:46:51                  |
       | datastore         | mongodb                              |
       | datastore_version | 2.4                                  |
       | id                | aa6ef0f5-dbef-48cd-8952-573ad881e717 |
       | name              | cluster1                             |
       | task_description  | Building the initial cluster.        |
       | task_name         | BUILDING                             |
       | updated           | 2014-08-16T01:46:51                  |
       +-------------------+--------------------------------------+

#. **Display cluster information**

   Display information about a cluster by using the
   :command:`openstack database cluster show` command. Pass in the ID of the cluster.

   The cluster ID displays when you first create a cluster. (If you need
   to find it later on, use the :command:`openstack database cluster list` command to list
   the names and IDs of all the clusters in your system.)

   .. code-block:: console

      $ openstack database cluster show CLUSTER_ID
       +-------------------+--------------------------------------+
       | Property          | Value                                |
       +-------------------+--------------------------------------+
       | created           | 2014-08-16T01:46:51                  |
       | datastore         | mongodb                              |
       | datastore_version | 2.4                                  |
       | id                | aa6ef0f5-dbef-48cd-8952-573ad881e717 |
       | ip                | 10.0.0.2                             |
       | name              | cluster1                             |
       | task_description  | No tasks for the cluster.            |
       | task_name         | NONE                                 |
       | updated           | 2014-08-16T01:59:33                  |
       +-------------------+--------------------------------------+


   .. note::

      **Your application connects to this IP address.** The :command:`openstack database cluster show`
      command displays the IP address of the query router.
      This is the IP address your application uses to retrieve data from
      the database.

#. **List cluster instances**

   List the instances in a cluster by using the
   :command:`openstack database cluster list instances` command.

   .. code-block:: console

      $ openstack database cluster list instances CLUSTER_ID
      +--------------------------------------+----------------+-----------+------+
      | ID                                   | Name           | Flavor ID | Size |
      +--------------------------------------+----------------+-----------+------+
      | 45532fc4-661c-4030-8ca4-18f02aa2b337 | cluster1-rs1-1 | 7         |    2 |
      | 7458a98d-6f89-4dfd-bb61-5cf1dd65c121 | cluster1-rs1-2 | 7         |    2 |
      | b37634fb-e33c-4846-8fe8-cf2b2c95e731 | cluster1-rs1-3 | 7         |    2 |
      +--------------------------------------+----------------+-----------+------+

   **Naming conventions for replication sets and instances.** Note
   that the ``Name`` column displays an instance name that includes the
   replication set name. The replication set names and instance names
   are automatically generated, following these rules:

   -  **Replication set name.** This name consists of the cluster
      name, followed by the string -rs\ *n*, where *n* is 1 for
      the first replication set you create, 2 for the second replication
      set, and so on. In this example, the cluster name is ``cluster1``,
      and there is only one replication set, so the replication set name
      is ``cluster1-rs1``.

   -  **Instance name.** This name consists of the replication set
      name followed by the string -*n*, where *n* is 1 for the
      first instance in a replication set, 2 for the second
      instance, and so on. In this example, the instance names are
      ``cluster1-rs1-1``, ``cluster1-rs1-2``, and ``cluster1-rs1-3``.

#. **List clusters**

   List all the clusters in your system, using the
   :command:`openstack database cluster list` command.

   .. code-block:: console

      $ openstack database cluster list
      +--------------------------------------+----------+-----------+-------------------+-----------+
      | ID                                   | Name     | Datastore | Datastore Version | Task Name |
      +--------------------------------------+----------+-----------+-------------------+-----------+
      | aa6ef0f5-dbef-48cd-8952-573ad881e717 | cluster1 | mongodb   | 2.4               | NONE      |
      | b8829c2a-b03a-49d3-a5b1-21ec974223ee | cluster2 | mongodb   | 2.4               | BUILDING  |
      +--------------------------------------+----------+-----------+-------------------+-----------+

#. **Delete a cluster**

   Delete a cluster, using the :command:`openstack database cluster delete` command.

   .. code-block:: console

      $ openstack database cluster delete CLUSTER_ID

Query routers and config servers
--------------------------------

Each cluster includes at least one query router and one config server.
Query routers and config servers count against your quota. When you
delete a cluster, the system deletes the associated query router(s) and
config server(s).