Version:

MarketplaceSupport

Introduction

Apache ZooKeeper is a centralized service for maintaining configuration information across a RadiantOne cluster. Although RadiantOne comes bundled with ZooKeeper to simplify installation in Dev/QA environments, it is discouraged to use this architecture in production. Shutting down a redundant RadiantOne server will also shut down ZooKeeper on this server. Because a ZooKeeper ensemble must have a quorum of more than half its servers running at any given time, this can be a problem for cluster integrity and stability. The solution is to deploy ZooKeeper in a separate, external ensemble.

Other advantages of having a ZooKeeper ensemble separate from the RadiantOne nodes include:

  • As a general best practice, you should only have one main service per server. This allows machines resources to be devoted to a single service and not have to compete for resources with other services.
  • You can choose the number of ZooKeeper nodes to deploy to meet your HA requirements (e.g. 3, which allows for the failure of 1 server, or 5 which allows for the failure of 2 servers) independently from the number of RadiantOne nodes you need to serve client requests.
  • You can choose the number of RadiantOne nodes to meet your needs. Only one node needs to be up for the service to work. A RadiantOne cluster of 2 nodes might be sufficient whereas if ZooKeeper was on the same server as RadiantOne you would be required to have 3 nodes to accommodate the requirements of the ZooKeeper ensemble for HA.
  • This de-coupled (single service per server) architecture is better for running in container technologies like Docker, simplifying deployment.
  • Easier to troubleshoot problems and there is one less point of failure per machine.

For details on installing RadiantOne in a Dev/QA environment see Installation.

For details on installing RadiantOne in a production environment, start with the steps to Setup the external ZooKeeper ensemble. Then, refer to Installating RadiantOne on how to point to an external ZooKeeper ensemble.

The installers are available via an ftp site. Contact [email protected] for access information.


Configuring External ZooKeeper Ensemble

For HA a minimum of three Zookeeper nodes is required.

An image showing

Figure 1: RadiantOne Cluster with External Zookeeper Ensemble


Configuring the First ZooKeeper Server

To configure the first ZooKeeper server:

  1. On the first node in the Zookeeper ensemble, extract the compressed Zookeeper installer.

    An image showing

    Figure 2: Extracting the Compressed Zookeeper File

  2. Open the extracted folder.

  3. Open the folder rli-zookeeper-external.

  4. Open the file setup.properties in a text editor. In this example, the file is opened using Notepad++.

    An image showing

    Figure 3: Opening setup.properties

  5. To attempt auto-resolution of the hostname, leave the zk.host-name value empty. In this example, this value is empty.

  6. To configure the ports used by Zookeeper, edit the values under # ZK ports. In this example, the default port values (2181, 2888, and 3888) remain unchanged.

  7. Under the “# Current ZK node ID (assign each node a unique incremental integer: 1,2,3,...)” line, append the zk.id line. As this is the first node in the cluster, enter a 1 so the line reads as follows.

    zk.id=1

  8. Enter values for the zk.peer parameters. The syntax for this parameter is as follows.

    zk.peer.1=hostname:<zk.client.port>:<zk.ensemble.port>:<zk.leaderelection.port>
    zk.peer.2= hostname:<zk.client.port>:<zk.ensemble.port>:<zk.leaderelection.port>
    zk.peer.3= hostname:<zk.client.port>:<zk.ensemble.port>:<zk.leaderelection.port>

    In this example, these values are as follows: zk.peer.1=10.11.10.31:2181:2888:3888
    zk.peer.2=10.11.10.39:2181:2888:3888
    zk.peer.3=10.11.10.40:2181:2888:3888

  9. Save setup.properties. In this example, the file is configured as follows for the first node in the cluster:

    An image showing

    Figure 4: The setup.properties File On the First Zookeeper Node

  10. In a Command Processor window, navigate to C:\rli-zookeeper-external.

  11. Run configure.bat. The configuration detects the additional nodes.

    An image showing

    Figure 5: Configuring Zookeeper

  12. In the command processor, navigate to C:\rli-zookeeper-external\bin.

  13. Run start_zookeeper.bat. Text similar to the following displays.

    An image showing

    Figure 6: Starting ZooKeeper

Configuring Additional ZooKeeper Nodes

Once the first Zookeeper node is configured, you are ready to configure additional nodes.

  1. On the second node in the cluster, perform the instructions in Configuring the First Zookeeper Server. The configured setup.properties file on Zookeeper node #2 should resemble the following image.

    An image showing

    Figure 7: The setup.properties File on the Second Zookeeper Node

  2. On the third node in the cluster, perform the instructions in Configuring the First Zookeeper Server. The configured setup.properties file on Zookeeper node #3 should resemble the following image.

An image showing

Figure 8: The setup.properties File on the Third Zookeeper Node


Installing RadiantOne

Once all Zookeeper nodes have been configured and started, install RadiantOne. Details about the RadiantOne installation process can be found in Installation.

If you use a load balancer, enter the hostname of the load balancer in the ZooKeeper Hostname/IP field. If you do not use a load balancer, enter the hostname and port number of one of the machines in the Zookeeper ensemble in the ZooKeeper Hostname/IP field. In this example, a load balancer is not used, so the Hostname value is r1-server, and the port number would be 2181.

An image showing

Figure 9: The ZK Connection String Value in the RadiantOne Installer

Configuring SSL between FID and ZooKeeper

Configuring SSL between FID and ZooKeeper can be configured after RadiantOne is installed. The steps are described in the RadiantOne Hardening Guide.


Testing a ZooKeeper Cluster

Once the Zookeeper ensemble and RadiantOne FID nodes are installed, you can test access to the ZooKeeper cluster.

To test a Zookeeper cluster:

  1. On a machine that is running RadiantOne FID, open a Command Processor.

  2. At the command line, navigate to <RLI_HOME>\bin\advanced. With a default RadiantOne FID installation, this location would be as follows (on Windows).

    c:\radiantone\vds\bin\advanced

  3. Run the following command.

    cluster.bat check

If Zookeeper is functional on all nodes, “SUCCESS” messages similar to the following are displayed.

An image showing

Figure 10: A Cluster Check with All Nodes Online

In the following image, one Zookeeper node has gone offline. In this example, RadiantOne nodes are unable to connect to the Zookeeper node at 10.11.10.39.

An image showing

Figure 11: A Cluster Check with One Node Offline

In the following image, two Zookeeper nodes have gone offline. If the ZooKeeper ensemble only had three nodes to begin with, the loss of two nodes puts the service in a non-functional state since the quorum has been lost. The RadiantOne nodes are impacted at this point and will enter into a read-only mode where they cannot accept configuration changes nor client write operations.

An image showing

Figure 12: A Cluster Check with Two Nodes Offline

Configuring ZooKeeper to Startup as a Service

Use the native operating system utilities (Task Scheduler or Linux Daemons) to configure the ZooKeeper service on each node in the ensemble so that it starts up automatically after reboot. The script to start ZooKeeper is <ZooKeeper_HOME>\bin\start_zookeeper.bat/.sh.

Scripts to install ZooKeeper as a service can be found by navigating to the RadiantOne version on the site referenced at the link above (e.g. /Installers/7.4/7.4.7) and then going to the ScriptsToInstallZKService folder.

https://support.radiantlogic.com/hc/en-us/articles/4484716474132-RadiantOne-Installers-and-Updaters

For further assistance, contact [email protected].

IN THIS PAGE