commit | c4f8da806331791d444712c432ccce5d87b8a4d5 | [log] [tgz] |
---|---|---|
author | Thiyagarajan Subramani <Thiyagarajan.Subramani@radisys.com> | Wed Feb 05 16:08:26 2020 +0530 |
committer | Thiyagarajan Subramani <Thiyagarajan.Subramani@radisys.com> | Thu Feb 06 17:17:14 2020 +0530 |
tree | f13f8cd47f66a1f83cdb06eae7eb5d35f906d5c2 | |
parent | 3533f8d6961c984387796cc0fe6ae54b5fb6ffe2 [diff] |
VOL-2523: Enhance scale tester app with LLDP flow for DT workflow and test provisioning 512 subscribers 512 subscriber provisioning tested with DT workflow enabled, results as below 1) one tm queue map created as for all subs DT use 1T8G techprofile 2) 1 ACL for LLDP flow created 3) 4096 HSIA flows added (upstream & Downstream share same flow ID) 4) 4096 Gemports created (GemID starts from 1024 to 5119) 5) 512 ALLOC objects created 6) (8*512 subs) + (4*16 PON) + 4 NNI = 4164 TM Queues created 7) (1*512 subs) + (1*16 PON) + 1 NNI = 529 TM Scheds created Change-Id: I7efa0c30f364866cf51e6930c0d3ab7a40fde0a8
This is used for scale testing of OpenOLT Agent + BAL (or other underlying platform)
The proposed design is here https://docs.google.com/document/d/1hQxbA8jvG1BEHeeLkM5L3sYrvgJUX7z2Tk7j1sPdd1s
make build
Make sure openolt-agent and dev_mgmt_daemon are running. Then run the below command from openolt-scale-tester
folder.
DOCKER_HOST_IP=<your-host-ip-here> OPENOLT_AGENT_IP_ADDRESS=<olt-ip-address-here> TAG=<docker-tag-here> docker-compose -f compose/openolt-scale-tester.yml up -d
Lets say your workflow name is XYZ, and the techprofile IDs needed by your workflow is 64 (there could be more than one techprofiles too). Create XYZ-64.json
file with your techprofile in tech_profiles
folder. Edit the compose/openolt-scale-tester.yml
file to reflect your workflow name, i.e., XYZ
for parameter --workflow_name
.
Create xyz_workflow.go
(see sample att_workflow.go
) which complies to WorkFlow
interface defined in workflow_manager.go
file and complete the implementation.
If there are more than one techprofiles needed by your workflow, then you need to create as many techprofiles with appropriate name as described above. Edit the compose/openolt-scale-tester.yml
file, parameter --tp_ids
with comma separated techprofile IDs.
Below parameters are currently configurable from compose/openolt-scale-tester.yml
file.
openolt_agent_ip_address [default: 10.90.0.114] openolt_agent_port [default: 9191] openolt_agent_nni_intf_id [default: 0] num_of_onu [default: 128] subscribers_per_onu [default: 1] workflow_name [default: ATT] time_interval_between_subs [default: 5] kv_store_host[default: 192.168.1.11] kv_store_port [default: 2379] tp_ids [ default: 64]
The following are known issues and limitations with the openolt-scale-tester tool.