mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-20 17:52:46 +00:00
docs and stuff
This commit is contained in:
parent
b845dd1b88
commit
f808138a94
@ -1,10 +1,12 @@
|
||||
HTTP one-to-all test
|
||||
======
|
||||
|
||||
This code can be deployed across a large number of VMs or containers to test and benchmark HTTP traffic within a virtual network at scale. The agent acts as a server and can query other agents, while the server collects agent data and tells agents about each other. It's designed to use RFC4193-based ZeroTier IPv6 addresses within the cluster, which allows the easy provisioning of a large cluster without IP conflicts.
|
||||
*This is really internal use code. You're free to test it out but expect to do some editing/tweaking to make it work. We used this to run some massive scale tests of our new geo-cluster-based root server infrastructure prior to taking it live.*
|
||||
|
||||
Before using this code you will want to edit agent.js to change SERVER_HOST to the IP address of where you will run server.js. This should typically be an open Internet IP, since this makes reporting not dependent upon the thing being tested. Also note that this thing does no security of any kind. It's designed for one-off tests run over a short period of time, not to be anything that runs permanently. You will also want to edit the Dockerfile if you want to build containers and change the network ID to the network you want to run tests over.
|
||||
|
||||
This code can be deployed across a large number of VMs or containers to test and benchmark HTTP traffic within a virtual network at scale. The agent acts as a server and can query other agents, while the server collects agent data and tells agents about each other. It's designed to use RFC4193-based ZeroTier IPv6 addresses within the cluster, which allows the easy provisioning of a large cluster without IP conflicts.
|
||||
|
||||
The Dockerfile builds an image that launches the agent. The image must be "docker run" with "--device=/dev/net/tun --privileged" to permit it to open a tun/tap device within the container. (Unfortunately CAP_NET_ADMIN may not work due to a bug in Docker and/or Linux.) You can run a bunch with a command like:
|
||||
|
||||
for ((n=0;n<10;n++)); do docker run --device=/dev/net/tun --privileged -d zerotier/http-test; done
|
||||
|
28
tests/http/run-a-big-test.sh
Executable file
28
tests/http/run-a-big-test.sh
Executable file
@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Edit as needed -- note that >1000 per host is likely problematic due to Linux kernel limits
|
||||
NUM_CONTAINERS=100
|
||||
CONTAINER_IMAGE=zerotier/http-test
|
||||
|
||||
#
|
||||
# This script is designed to be run on Docker hosts to run NUM_CONTAINERS
|
||||
#
|
||||
# It can then be run on each Docker host via pssh or similar to run very
|
||||
# large scale tests.
|
||||
#
|
||||
|
||||
export PATH=/bin:/usr/bin:/usr/local/bin:/usr/sbin:/sbin
|
||||
|
||||
# Kill and clean up old test containers if any -- note that this kills all containers on the system!
|
||||
docker ps -q | xargs -n 1 docker kill
|
||||
docker ps -aq | xargs -n 1 docker rm
|
||||
|
||||
# Pull latest if needed -- change this to your image name and/or where to pull it from
|
||||
docker pull $CONTAINER_IMAGE
|
||||
|
||||
# Run NUM_CONTAINERS
|
||||
for ((n=0;n<$NUM_CONTAINERS;n++)); do
|
||||
docker run --device=/dev/net/tun --privileged -d $CONTAINER_IMAGE
|
||||
done
|
||||
|
||||
exit 0
|
Loading…
x
Reference in New Issue
Block a user