Create a multi-cloud universe

You can use YugabyteDB Anywhere to create a YugabyteDB universe spanning multiple geographic regions and cloud providers. For example, you can deploy a single universe across AWS (US-West-2), Google Cloud Provider (Central-1), and Microsoft Azure (US-East1).

The following depicts the universe topology:

Multi-cloud universe topology

To create a multi-cloud universe, you would need to do the following:

Prerequisites

The following requirements must be met:

  • You must be able to create a Virtual Private Cloud (VPC), subnets, and provision virtual machines (VMs) in every cloud provider that you want to use.
  • You need root access on the instances to be able to create the Yugabyte user.
  • The instances should have access to the Internet to download software (recommended).

Set up instance VMs

When you create a universe, you need to import nodes that can be managed by YugabyteDB Anywhere. To set up your nodes, follow instructions in Prepare nodes (on-premises).

Note the following:

Set up VPC peering

You need to set up multi-cloud VPC peering through a VPN tunnel.

YugabyteDB is a distributed SQL database and requires TCP/IP communication across nodes. It also requires a particular set of firewall ports to be opened for cluster operations, which you set up in the previous section.

You should use non-overlapping Classless Inter-Domain Routing (CIDR) blocks for each subnet across different clouds.

All public cloud providers enable VPN tunneling across VPCs and their subnet to enable network discovery. As an example, see VPN between two clouds.

Install YugabyteDB Anywhere

Follow steps provided in Install YugabyteDB Anywhere to deploy YugabyteDB Anywhere on a new VM on one of your cloud providers. You will be able to use this node to manage your YugabyteDB universe.

Configure the on-premises cloud provider

You can configure the on-premises cloud provider for YugabyteDB using YugabyteDB Anywhere. If no cloud providers are configured, the main Dashboard page highlights that you need to configure at least one cloud provider. Refer to Configure the on-premises cloud provider for more information.

Set up the cloud provider

You need to navigate to Configs > On-Premises Datacenters, click Add Configuration, and then select Provider Info. Enter sample values into the following fields:

  • Provider Name is multi-cloud-demo.

  • SSH User is the user which will run Yugabyte on the node (yugabyte in this case).

  • SSH Port should remain the default of 22 unless your servers have a different SSH port.

  • Manually Provision Nodes should be disabled so that YugabyteDB Anywhere installs the software on these nodes.

  • SSH Key is the contents of the private key file to be used for authentication.
    Note that Paramiko is used for SSH validation, which typically does not accept keys generated with OpenSSL. If you generate your keys with OpenSSL, use a format similar to the following:

    ssh-keygen -m PEM -t rsa -b 2048 -f test_id_rsa
    
  • Air Gap Install should only be enabled if your nodes do not have the Internet connectivity.

    caption

Define an instance type

Select Instance Types and enter a machine description which matches the nodes you will be using. The machine type can be any logical name, given the machine types will be different between all three regions. The following example uses 8core:

Multi-cloud instance description

Define regions

Select Regions and Zones and define your regions, using descriptive names, as per the following illustration:

Multi-cloud regions

Click Finish to create your cloud provider. Once fully configured, the provider should look similar to the following:

Multi-cloud provider map view

Provision instances

After you have defined your cloud provider configuration, click Manage Instances to provision as many nodes as your application requires. Follow the instructions provided in Configure the on-premises cloud provider.

The provider's instance list should be similar to the following:

Multi-cloud instance list

Create a universe

You can create a multi-region universe as follows:

  1. Navigate to Dashboard or Universes and click Create Universe.

  2. Complete the Primary Cluster fields, as shown in the following illustration:

    New universe details

  3. Enter the universe name: helloworld2

  4. Enter the set of regions: us-aws-west-2, us-azu-east-1, us-centra1-b

  5. Set the instance type to 8core.

  6. Add the following flags for Master and T-Server:

    • leader_failure_max_missed_heartbeat_periods=10 - As the data is globally replicated, RPC latencies are higher. This flag increases the failure-detection interval to compensate.
    • use_cassandra_authentication=true - Deployments on public clouds require security.
    • ysql_enable_auth=true - Deployments on public clouds require security.

    New universe flags details

  7. Click Create.

At this point, YugabyteDB Anywhere begins to provision your new universe across multiple cloud providers. When the universe is provisioned, it appears on the Dashboard and Universes. You can click the universe name to open its Overview.

Universe overview page

The new universe's nodes list will be similar to the following:

Universe overview

Run the TPC-C benchmark

To run the TPC-C benchmark on your universe, use commands similar to the following (with your own IP addresses):

./tpccbenchmark -c config/workload_all.xml \
    --create=true \
    --nodes=10.9.4.142,10.14.16.8,10.9.13.138,10.14.16.9,10.152.0.14,10.152.0.32 \
    --warehouses 50 \
    --loaderthreads 10
./tpccbenchmark -c config/workload_all.xml \
    --load=true \
    --nodes=10.9.4.142,10.14.16.8,10.9.13.138,10.14.16.9,10.152.0.14,10.152.0.32 \
    --warehouses 50 \
    --loaderthreads 10
./tpccbenchmark -c config/workload_all.xml \
    --load=true \
    --nodes=10.9.4.142,10.14.16.8,10.9.13.138,10.14.16.9,10.152.0.14,10.152.0.32 \
    --warehouses 50

Refer to Running TPC-C on Yugabyte for details.