Help us improve your experience.

Let us know what you think.

Do you have time for a two-minute survey?

Navigation

Example: Configuring Queue Schedulers

Schedulers define the CoS properties of output queues. These properties include the amount of interface bandwidth assigned to the queue, the priority of the queue, and the tail-drop profiles associated with the queue.

Requirements

This example uses the following hardware and software components:

  • Juniper Networks QFX3500 Switch
  • Junos OS Release 11.1 or later for the QFX Series

Overview

Scheduler parameters define the following characteristics for the queues mapped to the scheduler:

  • transmit-rate—Minimum bandwidth, also known as the committed information rate (CIR). Each queue mapped to the scheduler receives a minimum of either the configured amount of absolute bandwidth or the configured percentage of bandwidth. The transmit rate also determines the amount of excess (extra) priority group bandwidth that the queue can share. Extra priority group bandwidth is allocated among the queues in the priority group in proportion to the transmit rate of each queue. You cannot configure a transmit rate for strict-high priority queues. Queues (forwarding classes) with a configured transmit rate cannot be included in a forwarding class set that has strict-high priority queues.

    Note: The transmit-rate setting works only if you also configure the guaranteed-rate in the traffic control profile that is attached to the forwarding class set to which the queue belongs. If you do not configure the guaranteed-rate, the transmit-rate does not work. The sum of all queue transmit rates in a forwarding class set should not exceed the traffic control profile guaranteed rate. If you configure transmit rates whose sum exceeds the forwarding class set guaranteed rate, the commit check fails, and the system rejects the configuration.

    Note: Include the preamble bytes and interframe gap bytes as well as the data bytes in your bandwidth calculations.

  • shaping-rate—Maximum bandwidth, also known as the peak information rate (PIR). Each queue receives a maximum of the configured amount of absolute bandwidth or the configured percentage of bandwidth, even if more bandwidth is available.

    Note: Include the preamble bytes and interframe gap bytes as well as the data bytes in your bandwidth calculations.

  • priority—One of two bandwidth priorities that queues associated with a scheduler can receive:
    • low—The scheduler has low priority.
    • strict-high—The scheduler has strict-high priority. You can configure only one queue as a strict-high priority queue. Strict-high priority allocates the scheduled bandwidth to the queue before any other queue receives bandwidth. Other queues receive the bandwidth that remains after the strict-high queue has been serviced.
  • drop-profile-map—Mapping of a drop profile to a loss priority and protocol to apply WRED to the scheduler.
  • buffer-size—Size of the queue buffer as a percentage of the dedicated buffer space on the port, or as a proportional share of the dedicated buffer space on the port that remains after the explicitly configured queues are served.

Note: Queues might not receive the egress bandwidth configured in the queue scheduler when a port’s egress queues are congested. This can occur when the ingress port buffer fills above a certain threshold. If this happens, configure a drop profile for the queue on the port that is receiving its configured bandwidth (this queue is preventing the other queues on the port from receiving their configured bandwidth). The drop profile applies a weighted random early detection (WRED) algorithm to the queue and prevents the queue from impacting the other queues on the port.

Scheduler maps associate schedulers with forwarding classes (queues). After defining schedulers and mapping them to queues in a scheduler map, to configure hardware queue scheduling (port scheduling) you:

  1. Associate a scheduler map with a traffic control profile (a traffic control profile schedules resources for a group of forwarding classes, called a forwarding class set or priority group).
  2. Attach a forwarding class and a traffic control profile to an interface.

You can associate up to four user-defined scheduler maps with forwarding class sets.

This process configures the hardware queues, packet schedulers, and WRED characteristics that operate according to the scheduler mapping. The traffic control profile uses the scheduler CoS properties to determine the resources that should be allocated to the individual output queues from the total resources available to the priority group.

Table 1 shows the configuration components for this example.

Table 1: Components of the Queue Scheduler Configuration Example

Component

Settings

Hardware

QFX3500 switch

Scheduler

Name: be-sched
Transmit rate: 20%
Shaping rate: 40%
Buffer size: 20%
Priority: low
Drop profile: be-dp

Scheduler map

Name: be-map
Forwarding class to associate with the be-sched scheduler: best-effort

Traffic control profile

Name: be-tcp

Note: This topic does not describe how to define a traffic control profile.

Forwarding class set

Name: lan-pg

Configuring a CoS Scheduler

Step-by-Step Procedure

To configure a CoS scheduler using the CLI:

  1. Create a scheduler (be-sched) with a minimum guaranteed bandwidth of 2 Gbps, a maximum bandwidth of 4 Gbps, low priority, and map it to the drop profile be-dp:
    [edit class-of-service schedulers]
    user@switch# set be-sched transmit-rate percent 20
    user@switch# set be-sched shaping-rate percent 40
    user@switch# set be-sched buffer-size percent 20
    user@switch# set be-sched priority low
    user@switch# set be-sched drop-profile-map loss-priority low protocol any drop-profile be-dp


  2. Configure a scheduler map (be-map) that associates the scheduler (be-sched) with the forwarding class (best-effort):
    [edit class-of-service scheduler-maps]
    user@switch# set be-map forwarding-class best-effort scheduler be-sched


  3. Associate the scheduler map be-map with a traffic control profile (be-tcp):
    [edit class-of-service traffic-control-profiles]
    user@switch# set be-tcp scheduler-map be-map


  4. Associate the traffic control profile be-tcp with a forwarding class set (lan-pg) and a 10-Gigabit Ethernet interface (xe-0/0/7):
    [edit class-of-service]
    user@switch# set interfaces xe-0/0/7 forwarding-class-set lan-pg output-traffic-control-profile be-tcp


  5. Alternatively, you can assign the scheduler map (be-map) to all the 10-Gigabit Ethernet interfaces using wildcards (xe-*):
    [edit class-of-service interfaces]
    user@switch# set xe-* forwarding-class-set lan-pg output-traffic-control-profile be-tcp

Verification

To verify that the queue scheduler has been created and is mapped to the correct interfaces, perform these tasks:

Verifying the Scheduler Configuration

Purpose

Verify that the queue scheduler be-sched has been created with a minimum guaranteed bandwidth of 2 Gbps, a maximum bandwidth of 4 Gbps, the priority set to low, and the drop profile be-dp.

Action

Display the scheduler using the operational mode command show configuration class-of-service schedulers be-sched:

user@switch> show configuration class-of-service schedulers be-sched
transmit-rate percent 20;
shaping-rate percent 40;
buffer-size percent 20
priority low;
drop-profile-map loss-priority low protocol any drop-profile be-dp;

Verifying the Scheduler Map Configuration

Purpose

Verify that the scheduler map be-map has been created and associates the forwarding class best-effort with the scheduler be-sched, and also that the scheduler map is attached to the traffic control profile be-tcp.

Action

Display the scheduler map using the operational mode command show configuration class-of-service scheduler-maps be-map:

user@switch> show configuration class-of-service scheduler-maps be-map
forwarding-class best-effort scheduler be-sched;


Display the traffic control profile to verify that the scheduler map be-map is attached using the operational mode command show configuration class-of-service traffic-control-profiles be-tcp scheduler-map:

user@switch> show configuration class-of-service traffic-control-profiles be-tcp scheduler-map
scheduler-map be-map;

Note: This topic does not describe how to configure a traffic control profile or its allocation of port bandwidth. Using a traffic control profile to configure the port resource allocation to the priority group is necessary to implement hierarchical scheduling.

Verifying That the Scheduler Is Associated with the Interface

Purpose

Verify that the forwarding class set (lan-pg) and the traffic control profile (be-tcp) that are associated with the queue scheduler are attached to the interface xe-0/0/7.

Action

List the interface using the operational mode command show configuration class-of-service interfaces xe-0/0/7:

user@switch> show configuration class-of-service interfaces xe-0/0/7
forwarding-class-set {
    lan-pg {
        output-traffic-control-profile be-tcp;
    }
}

Published: 2013-01-16