Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Configuration.md with SCHEDULER_TABLE and PORT_QOS_MAP #1455

Merged
merged 1 commit into from
Oct 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 28 additions & 2 deletions doc/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Table of Contents
* [Port](#port)
* [Port Channel](#port-channel)
* [Portchannel member](#portchannel-member)
* [Scheduler](#scheduler)
* [Port QoS Map](#port-qos-map)
* [Queue](#queue)
* [Tacplus Server](#tacplus-server)
Expand Down Expand Up @@ -924,6 +925,30 @@ name as object key and member list as attribute.
"PortChannel0004|Ethernet56": {}
}
}

```
### Scheduler

```
{
"SCHEDULER": {
"scheduler.0": {
"type": "STRICT"
},
"scheduler.1": {
"type": "WRR"
"weight": "1",
"meter_type": "bytes",
"pir": "1250000000",
"pbs": "8192"
},
"scheduler.port": {
"meter_type": "bytes",
"pir": "1000000000",
"pbs": "8192"
}
}
}
```

### Port QoS Map
Expand All @@ -936,7 +961,8 @@ name as object key and member list as attribute.
"tc_to_queue_map": "[TC_TO_QUEUE_MAP|AZURE]",
"pfc_enable": "3,4",
"pfc_to_queue_map": "[MAP_PFC_PRIORITY_TO_QUEUE|AZURE]",
"dscp_to_tc_map": "[DSCP_TO_TC_MAP|AZURE]"
"dscp_to_tc_map": "[DSCP_TO_TC_MAP|AZURE]",
"scheduler": "[SCHEDULER|scheduler.port]"
}
}
}
Expand Down Expand Up @@ -1162,4 +1188,4 @@ Incremental Configuration by Subscribing to ConfigDB

Detail instruction to be added. A sample could be found in this
[PR](https://github.com/Azure/sonic-buildimage/pull/861) that
implemented dynamic configuration for BGP.
implemented dynamic configuration for BGP.