Skip to content

Commit

Permalink
fix: fixed configuration for performance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
parvit committed Sep 28, 2024
1 parent 2a5e83a commit e47b628
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 53 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
default: false
required: true
push:
branches: [ "main", "testing-*", "issue*" ]
branches: [ "main", "dev-*" ]

run-name: Code Integration [${{ github.event_name }}][${{ github.head_ref || github.ref_name }}] rev.${{ github.sha }}

Expand Down
45 changes: 20 additions & 25 deletions docker/client-env/qpep.yml.tpl
Original file line number Diff line number Diff line change
@@ -1,29 +1,24 @@

# client
gateway: <QPEP_GATEWAY>
port: <QPEP_PORT>
apiport: 444
listenaddress: <QPEP_ADDRESS>
listenport: 9443
client:
local_address: <QPEP_ADDRESS>
local_port: 9443
gateway_address: <QPEP_GATEWAY>
gateway_port: <QPEP_PORT>

# backend
backend: <QPEP_BACKEND>
ccalgorithm: <QPEP_CCA>
ccslowstart: <QPEP_SLOWSTART>
buffersize: 512 # in Kb
protocol:
backend: <QPEP_BACKEND>
buffersize: 512
idletimeout: 30s
ccalgorithm: <QPEP_CCA>
ccslowstart: <QPEP_SLOWSTART>

# certificate
certificate: server_cert.pem
security:
certificate: server_cert.pem

# default
acks: 10
ackdelay: 25
congestion: 4
decimate: 4
decimatetime: 100
maxretries: 50
multistream: true
verbose: false
preferproxy: true
varackdelay: 0
threads: 4
general:
api_port: 444
max_retries: 20
diverter_threads: 4
use_multistream: true
prefer_proxy: true
verbose: false
46 changes: 19 additions & 27 deletions docker/server-env/server/config/qpep.yml.tpl
Original file line number Diff line number Diff line change
@@ -1,38 +1,30 @@

# server
gateway: ${QPEP_GATEWAY}
port: 443
apiport: 444
listenaddress: ${QPEP_ADDRESS}
listenport: ${QPEP_PORT}
server:
local_address: ${QPEP_ADDRESS}
local_port: 443

# backend
backend: ${QPEP_BACKEND}
ccalgorithm: ${QPEP_CCA}
ccslowstart: ${QPEP_SLOWSTART}
buffersize: 512 # in Kb
protocol:
backend: ${QPEP_BACKEND}
buffersize: 512
idletimeout: 30s
ccalgorithm: ${QPEP_CCA}
ccslowstart: ${QPEP_SLOWSTART}

# certificate
certificate: server_cert.pem
certificate_key: server_key.pem
security:
certificate: server_cert.pem
private_key: server_key.pem

# broker settings
analytics:
enabled: true
topic: /qpep
address: ${QPEP_BROKER}
port: 1883
protocol: tcp

# default
acks: 10
ackdelay: 25
congestion: 4
decimate: 4
decimatetime: 100
maxretries: 100
multistream: true
verbose: false
preferproxy: true
varackdelay: 0
threads: 4
general:
api_port: 444
max_retries: 20
diverter_threads: 4
use_multistream: true
prefer_proxy: true
verbose: false

0 comments on commit e47b628

Please sign in to comment.