Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. First we have to generate certificates in ~/tools/ssl folder by using gen_certs. This step only needs to be performed during the first test setup (or if the generated files have been deleted).

    Code Block
    titleGenerating certificates
    ./cloud-based-performance-test.sh gen_certs


  2. Then we call setup in order to send certificates to HV-VES, and deploy Consumers, Prometheus, Grafana and create their ConfigMaps.

    Code Block
    titleSetting up the test environment
    ./cloud-based-performance-test.sh setup


  3. After that we have to change HV-VES configuration in Consul KEY/VALUE tab (typically we can access Consul at port 32427 of any Controller node, i.e. http://slave1:32427/ui/#/dc1/kv/dcae-hv-ves-collector/edit).

    Code Block
    titleHV-VES Consul configuration
    {"security.sslDisable": false,
    "logLevel": "INFO",
    "server.listenPort": 6061,
    "server.idleTimeoutSec": 300,
    "cbs.requestIntervalSec": 5,
    "streams_publishes": {
    	"perf3gpp": {
    		"type": "kafka",
    		"aaf_credentials": {
    			"username": "admin",
    			"password": "admin_secret"
    			},
    		"kafka_info": {
    			"bootstrap_servers": "message-router-kafka:9092",
    			"topic_name": "HV_VES_PERF3GPP"
    			}
    		}
    	},
    "security.keys.trustStoreFile": "/etc/ves-hv/ssl/custom/trust.p12",
    "security.keys.keyStoreFile": "/etc/ves-hv/ssl/custom/server.p12",
    "security.keys.trustStorePasswordFile":"/etc/ves-hv/ssl/custom/trust.pass",
    "security.keys.keyStorePasswordFile": "/etc/ves-hv/ssl/custom/server.pass"}


  4. After completing previous steps we can call the start function, which provides Producers and starts the test.

    Code Block
    titlePerforming the test
    ./cloud

    run the test. The table below contains the parameters that can be passed to cloud-based-performance-test.sh

    start

    For the start function we can use optional arguments:

    script.


    gen_certsgenerate certs in ../../ssl directory
    setupset up ConfigMaps and consumers
    setup_allset up ConfigMaps consumers and producers
    send_configsend producers configuration (message interval and payload), located in producers-config/producer-config.json to each producer
    start_intervalstart interval mode, config file is located in producers-config/interval-config.json
    Optional parameters:
    --producers : number of producers in deployment (10
    --loadshould the test keep defined number of running producers until script interruption (false)--containersnumber of producer containers to create (1)--properties-filepath to file with benchmark properties (./test.properties
    )
    --retention-time-minutes
    : messages retention time
    of messages in
    on kafka in minutes (60)

    Example invocations of test start:

    Code Block
    titleStarting performance test with single producers creation
    ./cloud-based-performance-test.sh start --containers 10

    The command above starts the test that creates 10 producers which send the amount of messages defined in test.properties once.

    start_instantstart_instant : start instant mode, config file is located in producers-config/instant-config.json
    Optional parameters:
    --producers : number of producers in deployment (10)
    --retention-time-minutes : messages retention time on kafka in minutes (60)
    scale_producersscale producer deployment to number provide in argument
    stopstop all producers
    reset_producersreset all metrics on each producer
    cleanremove ConfigMap, HV-VES consumers
    clean_allremove ConfigMap, HV-VES consumers and producers
    helpprint usage


    Code Block
    titlePerforming the test
    Code Block
    titleStarting performance test with constant messages load
    ./cloud-based-performance-test.sh start_interval --load true --containers 10 --retention-time-minutes 30producers 10

    The command above starts the test that creates 10 producers which send messages with the interval given in producers-config/interval-config.json configuration file. For example:

    Code Block
    languagejs
    titleinterval-config.json
    collapsetrue
    {
      "intervalConfigs": [
        {
          "duration": 1,
          "interval": 100
        },
        {
          "duration": 2,
           "interval": 100
        }
      ]
    }
    
    

    Above request body queues a task to create new connections for 1 second with 100 milliseconds interval and then for 2 seconds with 100 milliseconds interval, meaning that overall of 30 connections should be setup over 3 secondsThis invocation starts load test, meaning the script will try to keep the amount of running containers at 10 with kafka message retention of 30 minutes.

    The test.properties file contains Producers and Consumers configurations and it allows setting following properties:

    Producer
    hvVesAddressHV-VES address (dcae-hv-ves-collector.onap:6061)
    client.countNumber of clients per pod (1)
    message.sizeSize of a single message in bytes (16384)
    message.countAmount of messages to be send by each client (1000)
    message.intervalInterval between messages in miliseconds (1)
    Certificates paths
    client.cert.pathPath to cert file (/ssl/client.p12)
    client.cert.pass.pathPath to cert's pass file (/ssl/client.pass)
    Consumer
    kafka.bootstrapServersAdress of Kafka service to consume from (message-router-kafka:9092)
    kafka.topicsKafka topics to subscribe to (HV_VES_PERF3GPP)


    Results can be accessed under following links:

  5. To remove created ConfigMaps, Consumers, Producers, Grafana and Prometheus from Kubernetes cluster we call clean function. Note: clean doesn't remove certificates from HV-VES.

    Code Block
    titleCleaning the environment
    ./cloud-based-performance-test.sh clean


In order to restart the test environment (perform steps in following order: 5, 2 and then 3), which means redeploying hv-ves pod, resetting kafka topic and performing setup, we use reboot-test-environment.sh.

...