GithubHelp home page GithubHelp logo

dongzzz-c / merak Goto Github PK

View Code? Open in Web Editor NEW

This project forked from futurewei-cloud/merak

0.0 0.0 0.0 123.49 MB

Merak: Large-scale cloud emulator

License: MIT License

Shell 0.60% Go 94.20% Makefile 3.26% Dockerfile 1.94%

merak's Introduction

Merak

A Large-scale Cloud Emulator provides ability to

  • emulate data center physical topologies and network devices including hosts, switches, and routers.
  • emulate a large volume of compute nodes (more than 100K) with limited physical hardware resources.
  • conduct the performance test for a target project's (e.g., Alcor) control plane with a large-size of VPC having more than 1M VMs.
  • automatically create and conduct different performance test scenarios and collect results.

Platforms

There are many different hardware resource management platform in the field, currently we choose two platforms to investigate and create our prototype:

  • Kubernetes cluster with Meshnet CNI
  • Distrinet with LXD containers

Architecture

The following diagram illustrate the high-level architecture of Merak on a kubernetes cluster using Meshnet CNI and the basic workflow to emulate Alcor's control plane for creating VMs in the emulated compute nodes.

Merak Architecture

Components

  • Scenario Manager: create the required topology and test scenarios.
  • K8S-Topo: deploy pods with the given topology.
  • Merak Network: create network infrastructure resources, e.g., vpcs, subnets, and security groups.
  • Merak Compute: register compute nodes informantion, create VMs and collect test results from merak agents.
  • Merak Agent: create virtual network devices (bridges, tap devices and veth pairs) and network namespace for VMs, collect test results and send the results back to merak compute.

Scalability

In order to provide more virtual and emulated resources with limited hardware resources, three possible solutions are investigated and developed in this project:

  • Docker-in-Docker
  • Kubernetes-in-Kubernetes (KinK)
  • Kubernetes cluster in virtual machines

For more detail design and information, please refer to the docs folder in this repository.

Kind: Simple Deployment and E2E Test

This test will bring up Merak and Alcor in a single master node Kind Kubernetes cluster.

Prerequisites

  • Minimum Machine Requirements (Our tests were ran on AWS t2.2xlarge ec2 instances)

    • 16GB RAM
    • 8 Core CPU
  • Update

sudo apt-get update
sudo apt-get install make
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
curl --proto '=https' --tlsv1.2 -sSfL https://run.linkerd.io/install | sh
export PATH=$PATH:/home/ubuntu/.linkerd2/bin
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.17.0/kind-linux-amd64 && chmod +x ./kind && sudo mv ./kind /usr/local/bin/kind
curl -LO https://dl.k8s.io/release/v1.26.0/bin/linux/amd64/kubectl && sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
sudo apt-get install docker.io
  • Add current user to docker group (for running docker without sudo)
sudo groupadd docker
sudo gpasswd -a $USER docker
newgrp docker

Step 1: Deploy

You can deploy Merak and Alcor in Kind with the command below.

git clone https://github.com/futurewei-cloud/merak.git
cd merak
make kind-alcor

Please wait for all pods to be in running state as shown in the picture below before proceeding to the next step. This should take approximately 5 minutes.

Successful Merak Deployment

Step 2: Run The Test

You can use the prebuilt test tool as shown below.

./tools/teste2e/bin/teste2e

This will create 5 hosts with 10 VM each. Once everything is created, you can test network connnectivity as shown below.

  1. Run kubectl get pods -A to see all vhost pods. Step 1

  2. Merak uses network namespaces to emulate VMs, run kubectl exec -it -n <namespace of the pod> vhost-0 ip netns exec v000 ip a to get the IP address of the emulated VM v000 inside of the emulated host vhost-0. Step 2

  3. Ping the VM v000 on vhost-0 from a different VM on vhost-1 with the following command kubectl exec -it -n <namespace of the pod> vhost-1 ip netns exec v000 ping (IP address from step 2) Step 2

Clean-up:

Run the command below to clean up the Kind environment.

kind delete cluster

Getting Started With Development

To build this project, please make sure the following things are installed:

Then, the project can be built with:

make

How to Deploy a Development Cluster

Prerequisites

Before deploying Merak with Alcor, you will need the following.

  • A Kubernetes cluster with flannel installed
  • Helm
    • curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
  • Needed for Alcor
    • Linkerd installed on the cluster
    • openvswitch-switch installed on every node (apt install openvswitch-switch)

NOTE: Please wait for all LinkerD pods and containers to be fully running before moving on to the steps below.

LinkerD

Deployment

Once your cluster is ready, you can deploy the latest small scale development (one replica for every service) build of Merak and Alcor with the command below.

kubectl kustomize https://github.com/futurewei-cloud/merak/deployments/kubernetes/alcor --enable-helm | kubectl apply -f -

A successful deployment should take roughly 5 minutes for all pods to come to running state. The deployed components are as follows:

  • Merak Microservices and their Redis instances
    • Merak Scenario Manager
    • Merak Topology
    • Merak Network
    • Merak Compute
  • Meshnet CNI
  • Temporal
  • Prometheus
  • Alcor Microservices and their Ignite instances
    • Port Manager
    • Network Config Manager
    • API Manager
    • EIP Manager
    • Dataplane Manager
    • IP Manager
    • Mac Manager
    • Node Manager
    • Quota Manager
    • Route Manager
    • Security Group Manager
    • Subnet Manager
    • VPC Manager
  • LinkerD

Successful Merak Deployment

The deployment settings such as container image and replicas can be changed by editing the kustomize file under deployments/kubernetes/alcor/kustomization.yaml and redeploying with

kubectl kustomize deployments/kubernetes/alcor --enable-helm | kubectl apply -f -

merak's People

Contributors

phudtran avatar cj-chung avatar zzengcs avatar yanmo96 avatar r12f avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.