burst should be set near max-rate
Burst value for TCP traffic should be set as 80% of desired bandwidth limit value. For example, if the bandwidth limit is set to 1000kbps then enough burst value will be 800kbit. If the configured burst value is too low, achieved bandwidth limit will be lower than expected. If the configured burst value is too high, too few packets could be limited and achieved bandwidth limit would be higher than expected. So we should recommend a correct example in case that user ignores the note. Change-Id: Iefea3ce699c39e217e89dec93a8fe8ea1a90ac82
This commit is contained in:
parent
a725e200ac
commit
f2d449d486
@ -223,13 +223,13 @@ First, create a QoS policy and its bandwidth limit rule:
|
|||||||
|
|
||||||
|
|
||||||
$ openstack network qos rule create --type bandwidth-limit --max-kbps 3000 \
|
$ openstack network qos rule create --type bandwidth-limit --max-kbps 3000 \
|
||||||
--max-burst-kbits 300 --egress bw-limiter
|
--max-burst-kbits 2400 --egress bw-limiter
|
||||||
+----------------+--------------------------------------+
|
+----------------+--------------------------------------+
|
||||||
| Field | Value |
|
| Field | Value |
|
||||||
+----------------+--------------------------------------+
|
+----------------+--------------------------------------+
|
||||||
| direction | egress |
|
| direction | egress |
|
||||||
| id | 92ceb52f-170f-49d0-9528-976e2fee2d6f |
|
| id | 92ceb52f-170f-49d0-9528-976e2fee2d6f |
|
||||||
| max_burst_kbps | 300 |
|
| max_burst_kbps | 2400 |
|
||||||
| max_kbps | 3000 |
|
| max_kbps | 3000 |
|
||||||
| name | None |
|
| name | None |
|
||||||
| project_id | |
|
| project_id | |
|
||||||
@ -398,7 +398,7 @@ attached port.
|
|||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
$ openstack network qos rule set --max-kbps 2000 --max-burst-kbits 200 \
|
$ openstack network qos rule set --max-kbps 2000 --max-burst-kbits 1600 \
|
||||||
--ingress bw-limiter 92ceb52f-170f-49d0-9528-976e2fee2d6f
|
--ingress bw-limiter 92ceb52f-170f-49d0-9528-976e2fee2d6f
|
||||||
|
|
||||||
$ openstack network qos rule show \
|
$ openstack network qos rule show \
|
||||||
@ -408,7 +408,7 @@ attached port.
|
|||||||
+----------------+--------------------------------------+
|
+----------------+--------------------------------------+
|
||||||
| direction | ingress |
|
| direction | ingress |
|
||||||
| id | 92ceb52f-170f-49d0-9528-976e2fee2d6f |
|
| id | 92ceb52f-170f-49d0-9528-976e2fee2d6f |
|
||||||
| max_burst_kbps | 200 |
|
| max_burst_kbps | 1600 |
|
||||||
| max_kbps | 2000 |
|
| max_kbps | 2000 |
|
||||||
| name | None |
|
| name | None |
|
||||||
| project_id | |
|
| project_id | |
|
||||||
|
Loading…
Reference in New Issue
Block a user