Droonga tutorial: How to add a new replica to an existing cluster?

The goal of this tutorial

Learning steps to add a new replica node, remove an existing replica, and replace a replica with new one, for your existing Droonga cluster.

Precondition

What’s “replica”?

There are two axes, “replica” and “slice”, for Droonga nodes.

All “replica” nodes have completely equal data, so they can process your requests (ex. “search”) parallelly. You can increase the capacity of your cluster to process increasing requests, by adding new replicas.

On the other hand, “slice” nodes have different data, for example, one node contains data of the year 2013, another has data of 2014. You can increase the capacity of your cluster to store increasing data, by adding new slices.

Currently, for a Droonga cluster which is configured as a Groonga compatible system, only replicas can be added, but slices cannot be done. We’ll improve extensibility for slices in the future.

Anyway, this tutorial explains how to add a new replica node to an existing Droogna cluster. Here we go!

Add a new replica node to an existing cluster

In this case you don’t have to stop the cluster working, for any read-only requests like “search”. You can add a new replica, in the backstage, without downing your service.

On the other hand, you have to stop inpouring of new data to the cluster until the new node starts working. (In the future we’ll provide mechanism to add new nodes completely silently without any stopping of data-flow, but currently can’t.)

Assume that there is a Droonga cluster constructed with two replica nodes 192.168.0.10 and 192.168.0.11, and we are going to add a new replica node 192.168.0.12.

Setup a new node

First, prepare a new computer, install required softwares and configure them.

(on 192.168.0.12)
# apt-get update
# apt-get -y upgrade
# apt-get install -y ruby ruby-dev build-essential nodejs nodejs-legacy npm
# gem install droonga-engine
# npm install -g droonga-http-server
# mkdir ~/droonga

Then, remember the command line you executed to generate catalog.json for your cluster. It was:

(on 192.168.0.10 or 192.168.0.11)
# droonga-engine-catalog-generate --hosts=192.168.0.10,192.168.0.11 \
                                  --output=~/droonga/catalog.json

For the new node, you have to generate a custom.json includes only one node, with same options except the --host option, like:

(on 192.168.0.12)
# droonga-engine-catalog-generate --hosts=192.168.0.12 \
                                  --output=~/droonga/catalog.json

Let’s start the server.

(on 192.168.0.12)
# cd ~/droonga
# host=192.168.0.12
# droonga-engine --host=$host \
                 --log-file=$PWD/droonga-engine.log \
                 --daemon \
                 --pid-file=$PWD/droonga-engine.pid
# env NODE_ENV=production \
    droonga-http-server --port=10041 \
                        --receive-host-name=$host \
                        --droonga-engine-host-name=$host \
                        --cache-size=-1 \
                        --daemon \
                        --pid-file=$PWD/droonga-http-server.pid

Then there are two separate Droonga clusters on this time.

You can confirm that, via the status file live-nodes.json on each node:

(on 192.168.0.10, 192.168.0.11)
# cat ~/droonga/state/live-nodes.json
{
  "192.168.0.10:10031/droonga": {
    "serfAddress": "192.168.100.52:7946"
  },
  "192.168.0.11:10031/droonga": {
    "serfAddress": "192.168.100.50:7946"
  }
}
(on 192.168.0.12)
# cat ~/droonga/state/live-nodes.json
{
  "192.168.0.12:10031/droonga": {
    "serfAddress": "192.168.100.51:7946"
  }
}

Suspend inpouring of “write” requests

Before starting duplication of data, you must suspend inpouring of “write” requests to the cluster alpha, because we have to synchronize data in clusters alpha and beta completely. Otherwise, the new added replica node will contain incomplete data. Because data in replicas will be inconsistent, results for any request to the cluster become unstable.

What’s “write” request? In particular, these commands modify data in the cluster:

If you load new data via the load command triggered by a batch script started as a cronjob, disable the job. If a crawler agent adds new data via the add command, stop it. If you put a fluentd as a buffer between crawler or loader and the cluster, stop outgoing messages from the buffer.

If you are reading this tutorial sequentially after the previous topic, there is no incoming requests, so you have nothing to do.

Duplicate data from the existing cluster to the new replica

Duplicate data from the cluster alpha to the cluster beta. It can be done by drndump and droonga-request commands. (You have to install drndump and droonga-client gem packages.)

(on 192.168.0.12)
# drndump --host=192.168.0.10 \
          --receiver-host=192.168.0.12 | \
    droonga-request --host=192.168.0.12 \
                    --receiver-host=192.168.0.12

Note that you must specify the host name or the IP address of the machine via the --receiver-host option. If you run the command line on the node 192.168.0.11, then:

(on 192.168.0.11)
# drndump --host=192.168.0.10 \
          --receiver-host=192.168.0.11 | \
    droonga-request --host=192.168.0.12 \
                    --receiver-host=192.168.0.11

Join the new replica to the cluster

After the duplication is successfully done, join the new replica to the existing clster. Re-generate the catalog.json on the newly joining node 192.168.0.12, with all nodes specified via the --hosts option, like:

(on 192.168.0.12)
# droonga-engine-catalog-generate --hosts=192.168.0.10,192.168.0.11,192.168.0.12 \
                                  --output=~/droonga/catalog.json

The server process detects new catalog.json and restats itself automatically.

Then there are two overlapping Droonga clusters theoretically on this time.

You can confirm that, via the status file live-nodes.json on each node:

(on 192.168.0.10, 192.168.0.11)
# cat ~/droonga/state/live-nodes.json
{
  "192.168.0.10:10031/droonga": {
    "serfAddress": "192.168.100.52:7946"
  },
  "192.168.0.11:10031/droonga": {
    "serfAddress": "192.168.100.50:7946"
  }
}
(on 192.168.0.12)
# cat ~/droonga/state/live-nodes.json
{
  "192.168.0.10:10031/droonga": {
    "serfAddress": "192.168.100.52:7946"
  },
  "192.168.0.11:10031/droonga": {
    "serfAddress": "192.168.100.50:7946"
  },
  "192.168.0.12:10031/droonga": {
    "serfAddress": "192.168.100.51:7946"
  }
}

Note that the temporary cluster named “beta” is gone. And, the new node 192.168.0.12 knows the cluster charlie includes three nodes, other two existing nodes don’t know that. Because both two existing nodes think that there are only them in the cluster they belong to, any incoming request to them never delivered to the new replica 192.168.0.12 yet.

Next, copy new catalog.json from 192.168.0.12 to others.

(on 192.168.0.12)
# scp ~/droonga/catalog.json 192.168.0.10:~/droonga/
# scp ~/droonga/catalog.json 192.168.0.11:~/droonga/

Servers detect new catalog.json and restart themselves automatically.

Then there is just one Droonga clusters on this time.

You can confirm that, via the status file live-nodes.json on each node:

(on 192.168.0.10, 192.168.0.11, 192.168.0.12)
# cat ~/droonga/state/live-nodes.json
{
  "192.168.0.10:10031/droonga": {
    "serfAddress": "192.168.100.52:7946"
  },
  "192.168.0.11:10031/droonga": {
    "serfAddress": "192.168.100.50:7946"
  },
  "192.168.0.12:10031/droonga": {
    "serfAddress": "192.168.100.51:7946"
  }
}

Note that the old cluster named “alpha” is gone. Now the new cluster “charlie” with three replicas works perfectly, instead of the old one with two replicas.

Resume inpouring of “write” requests

OK, it’s the time. Because all replica nodes are completely synchronized, the cluster now can process any request stably. Resume inpouring of requests which can modify the data in the cluster - cronjobs, crawlers, buffers, and so on.

With that, a new replica node has joined to your Droonga cluster successfully.

Remove an existing replica node from an existing cluster

A Droonga node can die by various fatal reasons - for example, OOM killer, disk-full error, troubles around its hardware, etc. Because nodes in a Droonga cluster observe each other and they stop delivering messages to dead nodes automatically, the cluster keeps working even if there are some dead nodes. Then you have to remove dead nodes from the cluster.

Of course, even if a node is still working, you may plan to remove it to reuse for another purpose.

Assume that there is a Droonga cluster constructed with trhee replica nodes 192.168.0.10, 192.168.0.11 and 192.168.0.12, and planning to remove the last node 192.168.0.12 from the cluster.

Unjoin an existing replica from the cluster

To remove a replica from an existing cluster, you just have to update the “catalog.json” with new list of replica nodes except the node to be removed:

(on 192.168.0.10)
# droonga-engine-catalog-generate --hosts=192.168.0.10,192.168.0.11 \
                                  --output=~/droonga/catalog.json

Then there are two overlapping Droonga clusters theoretically on this time.

The node 192.168.0.10 with new catalog.json knows the cluster delta includes only two nodes, so it doesn’t deliver incoming messages to the missing node 192.168.0.12 anymore.

Next, copy new catalog.json from 192.168.0.10 to others.

(on 192.168.0.10)
# scp ~/droonga/catalog.json 192.168.0.11:~/droonga/
# scp ~/droonga/catalog.json 192.168.0.12:~/droonga/

Then there is only one Droonga cluster on this time.

Even if both nodes 192.168.0.11 and 192.168.0.12 receive requests, they are delivered to the nodes of the cluster delta. The orphan node 192.168.0.12 never process requests by self.

OK, the node is ready to be removed. Stop servers and shutdown it if needed.

(on 192.168.0.12)
# kill $(cat ~/droonga/droonga-engine.pid)
# kill $(cat ~/droonga/droonga-http-server.pid)

Replace an existing replica node in a cluster with a new one

Replacing of nodes is a combination of those instructions above.

Assume that there is a Droonga cluster constructed with two replica nodes 192.168.0.10 and 192.168.0.11, the node 192.168.0.11 is unstable, and planning to replace it with a new node 192.168.0.12.

Unjoin an existing replica from the cluster

First, remove the unstable node. Re-generate catalog.json without the node to be removed, and spread it to other nodes in the cluster:

(on 192.168.0.10)
# droonga-engine-catalog-generate --hosts=192.168.0.10 \
                                  --output=~/droonga/catalog.json
# scp ~/droonga/catalog.json 192.168.0.11:~/droonga/

After that the node 192.168.0.11 unjoins from the cluster successfully.

Add a new replica

Next, setup the new replica. Construct a temporary cluster with only one node, and duplicate data from the existing cluster:

(on 192.168.0.12)
# droonga-engine-catalog-generate --hosts=192.168.0.12 \
                                  --output=~/droonga/catalog.json
# drndump --host=192.168.0.10 \
          --receiver-host=192.168.0.12 | \
    droonga-request --host=192.168.0.12 \
                    --receiver-host=192.168.0.12

After the duplication successfully finished, the node is ready to join the cluster. Re-generate catalog.json and spread it to all nodes in the cluster:

(on 192.168.0.12)
# droonga-engine-catalog-generate --hosts=192.168.0.10,192.168.0.12 \
                                  --output=~/droonga/catalog.json
# scp ~/droonga/catalog.json 192.168.0.10:~/droonga/

Finally a Droonga cluster constructed with two nodes 192.168.0.10 and 192.168.0.12 is here.

Conclusion

In this tutorial, you did add a new replica node to an existing Droonga cluster. Moreover, you did remove an existing replica, and did replace a replica with a new one.