Merge master rest traffic to deploy-wakusim (#104)

* fix wakusim hostname

see https://github.com/status-im/infra-misc/pull/388

* chore: update docker compose command in README.md  (#99)

* Using shards, pubsubtopic is deprecated (#102)

* Move the rest-traffic logic inside waku-simulator (#103)

* Move the rest-traffic logic inside waku-simulator to be built locally

* Enable timestamp for rest-traffic

---------

Co-authored-by: Anton Iakimov <yakimant@gmail.com>
Co-authored-by: Ivan FB <128452529+Ivansete-status@users.noreply.github.com>
This commit is contained in:
Tanya S 2025-04-11 09:41:37 +02:00 committed by GitHub
parent 52b685d9d8
commit 7ee9a793ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 139 additions and 16 deletions

View File

@ -21,23 +21,21 @@ export ETH_FROM=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266
export RLN_RELAY_EPOCH_SEC=10
export RLN_RELAY_MSG_LIMIT=2
export MAX_MESSAGE_LIMIT=100 # Contract's message limit. Needs to be higher or equal than RLN_RELAY_MSG_LIMIT, otherwise nodes won't start correctly.
docker-compose --compatibility up -d
```
## warning
in case arp tables are overflowing:
Run the following command
```
sysctl net.ipv4.neigh.default.gc_thresh3=32000
docker compose up -d
```
(tested with Docker Compose version v2.28.1. Notice that we don't support docker compose v1)
Compose V2 users should spin up the containers with the following command:
## Warning
```
docker-compose --compatibility up -d
```
In case arp tables are overflowing:
```
sysctl net.ipv4.neigh.default.gc_thresh3=32000
```
# Infrastructure

View File

@ -99,7 +99,9 @@ services:
- simulation
rest-traffic:
image: alrevuelta/rest-traffic:28430f8
build:
context: ./tools/rest-traffic
dockerfile: Dockerfile
command:
--multiple-nodes=http://waku-simulator-nwaku-[1..${NUM_NWAKU_NODES:-5}]:8645
--msg-size-kbytes=${MSG_SIZE_KBYTES:-10}

View File

@ -17,5 +17,4 @@ exec /usr/bin/wakunode\
--metrics-server-address=0.0.0.0\
--nodekey=30348dd51465150e04a5d9d932c72864c8967f806cce60b5d26afeca1e77eb68\
--nat=extip:${IP}\
--pubsub-topic=/waku/2/rs/66/0\
--cluster-id=66

View File

@ -148,5 +148,5 @@ exec /usr/bin/wakunode\
--metrics-server-address=0.0.0.0\
--discv5-bootstrap-node=${BOOTSTRAP_ENR}\
--nat=extip:${IP}\
--pubsub-topic=/waku/2/rs/66/0\
--shard=0\
--cluster-id=66

View File

@ -0,0 +1,11 @@
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENTRYPOINT ["python", "./traffic.py"]

View File

@ -0,0 +1,16 @@
# rest-traffic
Test utility for [nwaku](https://github.com/waku-org/nwaku).
Given the REST API endpoint, it injects traffic with a given message size at a given rate.
See usage:
```
./python traffic.py ---help
```
Use with docker:
```
build:
context: ./tools/rest-traffic
dockerfile: Dockerfile
```

View File

@ -0,0 +1,2 @@
requests==2.32.3
argparse==1.4.0

View File

@ -0,0 +1,95 @@
import requests
import time
import datetime
import os
import base64
import urllib.parse
import requests
import argparse
import re
def send_waku_msg(node_address, kbytes, pubsub_topic, content_topic):
# TODO dirty trick .replace("=", "")
base64_payload = (base64.b64encode(os.urandom(kbytes*1000)).decode('ascii')).replace("=", "")
print("size message kBytes", len(base64_payload) *(3/4)/1000, "KBytes")
body = {
"payload": base64_payload,
"contentTopic": content_topic,
"version": 1, # You can adjust the version as needed
"timestamp": int(time.time())
}
encoded_pubsub_topic = urllib.parse.quote(pubsub_topic, safe='')
url = f"{node_address}/relay/v1/messages/{encoded_pubsub_topic}"
headers = {'content-type': 'application/json'}
readable_time = datetime.datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
print('[%s] Waku REST API: %s PubSubTopic: %s, ContentTopic: %s' % (readable_time, url, pubsub_topic, content_topic))
s_time = time.time()
response = None
readable_time = datetime.datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
try:
print('[%s] Sending request' % readable_time)
response = requests.post(url, json=body, headers=headers)
except Exception as e:
print(f"Error sending request: {e}")
if(response != None):
elapsed_ms = (time.time() - s_time) * 1000
readable_time = datetime.datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
print('[%s] Response from %s: status:%s content:%s [%.4f ms.]' % (readable_time, node_address, \
response.status_code, response.text, elapsed_ms))
parser = argparse.ArgumentParser(description='')
# these flags are mutually exclusive, one or the other, never at once
group = parser.add_mutually_exclusive_group(required=True)
group.add_argument('-sn', '--single-node', type=str, help='example: http://waku-simulator-nwaku-1:8645')
group.add_argument('-mn', '--multiple-nodes', type=str, help='example: http://waku-simulator-nwaku-[1..10]:8645')
# rest of araguments
parser.add_argument('-c', '--content-topic', type=str, help='content topic', default="my-ctopic")
parser.add_argument('-p', '--pubsub-topic', type=str, help='pubsub topic', default="/waku/2/rs/66/0")
parser.add_argument('-s', '--msg-size-kbytes', type=int, help='message size in kBytes', default=10)
parser.add_argument('-d', '--delay-seconds', type=int, help='delay in second between messages', required=15)
args = parser.parse_args()
print(args)
if args.single_node != None:
print("Injecting traffic to single node REST API:", args.single_node)
# this simply converts from http://url_[1..5]:port to
# [http://url_1:port or from http://url-[1..5]:port to
# [http://url-1:port
nodes = []
if args.multiple_nodes:
start, end = (int(x) for x in re.search(r"\[(\d+)\.\.(\d+)\]", args.multiple_nodes).groups())
if start is None or end is None:
print("Could not parse range of multiple_nodes argument")
exit
print("Injecting traffic to multiple nodes REST APIs")
for i in range(end, start - 1, -1):
nodes.append(re.sub(r"\[\d+\.\.\d+\]", str(i), args.multiple_nodes))
for node in nodes:
print(node)
while True:
# calls are blocking
# limited by the time it takes the REST API to reply
if args.single_node != None:
send_waku_msg(args.single_node, args.msg_size_kbytes, args.pubsub_topic, args.content_topic)
if args.multiple_nodes != None:
for node in nodes:
send_waku_msg(node, args.msg_size_kbytes, args.pubsub_topic, args.content_topic)
readable_time = datetime.datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
print('[%s] sleeping: %s seconds' % (readable_time, args.delay_seconds))
time.sleep(args.delay_seconds)

View File

@ -1,4 +1,4 @@
# Env variables for metal-01.he-eu-hel1.wakusim.misc host.
# Env variables for metal-01.he-eu-hel1.misc.wakusim host.
NWAKU_IMAGE=harbor.status.im/wakuorg/nwaku:latest
# Network scaling.
NUM_NWAKU_NODES=50
@ -16,4 +16,4 @@ MAX_MESSAGE_LIMIT=100
# RLNv2 limits
RLN_RELAY_MSG_LIMIT=100
RLN_RELAY_EPOCH_SEC=600
RLN_CONTRACT_REPO_COMMIT=64df4593c6a14e43b8b0e9b396d2f4772bb08b34
RLN_CONTRACT_REPO_COMMIT=64df4593c6a14e43b8b0e9b396d2f4772bb08b34