Internet-Draft Routing in Dragonfly+ Topologies March 2024
Afanasiev, et al. Expires 5 September 2024 [Page]
Workgroup:
Routing Area Working Group
Internet-Draft:
draft-agt-rtgwg-dragonfly-routing-01
Published:
Intended Status:
Informational
Expires:
Authors:
D. Afanasiev
R. Glebov
Yandex
J. Tantsura
Nvidia

Routing in Dragonfly+ Topologies

Abstract

This document provides an overview of Dragonfly+ network topology and describes routing implementation for IP networks with Dragonfly+ topology with support for non-minimal routing.t

Status of This Memo

This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.

Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.

Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."

This Internet-Draft will expire on 5 September 2024.

Table of Contents

1. Introduction

Dragonfly [KIM2008] is a high-scalability, low-diameter, cost-efficient network topology that provides high bandwidth and large path diversity. Dragonfly topology was originally designed for HPC and supercomputing systems and is now adopted in more and more supercomputing networks. Its properties also make it an interesting candidate for data center network topology, especially Dragonfly+ variant [SPHINER2017] with leaf-spine intra-group topology. But building IP networks with Dragonfly+ topology is a non-trivial problem because IP networks lack many mechanisms traditionally available in HPC interconnection networks. Specifically , Dragonfly+ relies heavily on non-minimal routing and adaptive load balancing for efficient use of available network capacity.

1.1. Requirements Language

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.

2. Terminology

This section introduces the terminology used in this document.

Group
building block of Dragonfly network, collection of nodes connected by local links. In practical deployments, routers and associated end-points belonging to a group are assumed to be compactly colocated.
Local (L) / intra-group link
Link between routers in the same group. In Dragonfly+ group is a leaf-spine network (bipartite graph) so local links are always between leaf and spine.
Global (G) / inter-group link
Links between routers from different groups. Usually long and more expensive so it is desirable to minimize the number of global links.
Path signature
Sequence of letters corresponding to types of links in the path, e.g. LGLLGL.
Local / intra-group network
Global / inter-group network
MIN
Minimal routing
VAL
Randomized non-minimal routing (valiant load balanced)
AR
Adaptive routing. Name is misleading because it has nothing to do with disseminating reachability information - it is a mapping mechanism that maps traffic to already known paths.
UGAL
Universal Globally-Adaptive load-balanced
UGAL-L
UGAL with using local queue information at current router node
UGAL-G
UGAL using global information
ARN
Adaptive Routing Notification

3. Network Design Requirements

Network design requirements are largely the same as in [RFC7938]. The most notable difference is the extensive use of non-minimal paths.

4. Dragonfly Topology

Body text

4.1. Dragonfly Topology Overview

Dragonfly topology was introduced by Kim et al. [KIM2008]. It aims to decrease the cost and diameter of the network while providing good scalability. Dragonfly is a hierarchical topology that divides routers into groups connected by long (inter-group) links in a fully-connected global network. Each group essentially implements high-radix virtual router. Dragonfly is a direct topology, in which every router has a set of terminal connections leading to endpoints, and a set of topological connections leading to other routers, some from the same group and some from the other groups. While original Dragonfly uses fully-connected intra-group topology it doesn't prevent using other intra-group topologies. Different intra-group topologies produce different Dragonfly "flavors". Inter-group topology is always fully connected. Dragonfly+ as proposed in [SPHINER2017] relies on an extended group topology in which intra-group routers are connected as a bipartite graph (leaf-spine or Clos-like topology). Dragonfly+ is superior to conventional Dragonfly due to the significantly larger number of hosts which it is able to support. In addition, Dragonfly+ supports similar or better bisectional bandwidth for various traffic patterns and requires smaller number of buffers to avoid credit loop deadlocks in lossless networks. Dragonfly+ is a indirect topology where only leaf nodes are connect to endpoints. TODO: spine sizing.

4.2. Rouging and Paths in Dragonfly+

In Dragonfly and Dragonfly+ topologies there exists at least one direct global link between every pair of groups. Minimal intergroup routes traverse a single global link. The capacity of minimal routes between each pair of groups is lower than the aggregate link capacity of hosts in a group. Therefore, conventional minimal routing is not enough to obtain maximal throughput and efficiently support various traffic patters. [KIM2008] introduces the concept of non-minimal adaptive routing. For Dragonfly+ we can define three priority levels of inter-group routes. We use notations of ”L” and ”G” below to express where the route traverses local or global link, respectively.

  1. High priority: Minimal route (LGL) - a shortest distance route which passes through two spine routers using a single global link.
  2. Medium priority: Intermediate spine route (LGGL) - a route which traverses an intermediate group, using its spine router, passing exactly three spine routers using two global links.
  3. Low priority: Intermediate leaf route (LGLLGL) - a route which traverses an intermediate group using its two spine routers and a leaf router, passing exactly four spine routers using two global links.

LGLLGL routes normally appear only when some spines are not connected to at least one spine in every other group - in this case non-minimal routes through intermediate group might need to use different ingress and egress spines in the intermediate group. TODO: discuss imbalance, density and LGLLGL routes [WILKE2017]

4.3. Topology Construction and Graph Wiring

One possible implementation is described in [WILKE2017]. TODO: describe wiring scheme invariant under group rotation (consistent renumbering of all groups by the same offset mod number of groups).

4.4. Adaptive Load Balancing

While routing and forwarding setup described in this document allows to propagate reachability information and install forwarding state required for Dragonfly+ topologies, including non-minimal paths, it's not enough to efficiently use Dragonfly network capacity, especially in presence of LGLLGL paths. Efficient traffic to paths mapping in Dragonfly network can not be described by static mechanisms because ideally we would like to

This requires dynamic adaptive load balancing and coupling between adaptive load balancing and congestion control. Adaptive load balancing MUST be able to work without complete knowledge of network link utilization and queue state since such state can significantly change over the period of several RTTs and collecting and distributing global network utilization information often enough in any network of practically interesting size in infeasible. Adaptive routing can also work as a complementary failure handling mechanism with much faster reaction time than routing convergence. TODO: separate document describing possible adaptive load balancing implementation using existing mechanisms.

5. Routing and Forwarding

This section describes routing design supporting non-minimal paths. It uses only existing mechanisms - VRFs, route leaking and EBGP as a routing protocol. EBGP is chosen for scalability and flexibility - routing policies and communities allow to implement additional logic and precisely control propagation of routing updates. Routing design is based on following principles:

5.1. Forwarding

To achieve desired forwarding behavior several VRFs are configured on every spine:

Additional VRF serving as a virtual link is configured if network is using LGLLGL paths - "reflect" VRF in each group containing local links. Since both local VRF and reflect VRF include leaf-spine links some form of VRF multiplexing over leaf-spine links is required when LGLLGL paths are used. Additional VRF serving as a virtual link is configured if network is using LGLLGL paths - reflect VRF in each group containing local links. Since both local VRF and reflect VRF include leaf-spine links some form of VRF multiplexing over leaf-spine links is required when LGLLGL paths are used. Local VRF: - imports minimal and non-minmal paths from the core VRF and installs them Core VRF - imports locally originated paths from local VRF in each group - imports transit paths from reflect VRF Reflect VRF - imports minimal paths from `core VRF

5.2. Routing

Each group is in a separate AS. Communities, routing policies and update propagation:

During import into local VRFs prepend ASPATH:

As result paths with C1, C2 and C3 will all have has the same ASPATH length in local VRFs and will be eligible for ECMP.

5.3. Scalability and Optimizations

TODO

5.4. Failure handling and convergence

TODO

5.5. Asymmetry and traffic engineering

Body text

6. IANA Considerations

This memo includes no request to IANA.

7. Security Considerations

This document should not affect the security of the Internet.

8. References

8.1. Normative References

[RFC8174]
Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, , <https://www.rfc-editor.org/info/rfc8174>.

8.2. Informative References

[RFC2119]
Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, , <https://www.rfc-editor.org/info/rfc2119>.
[RFC7938]
Bradner, S., "Use of BGP for Routing in Large-Scale Data Centers", BCP 14, RFC 2119, DOI 10.17487/RFC2119, , <https://www.rfc-editor.org/info/rfc7938>.
[KIM2008]
Kim, J., Dally, W. J., Scott, S., and D. Abts, "Technology-Driven, Highly-Scalable Dragonfly Topology", , <https://doi.org/10.1109/ISCA.2008.19>.
[SPHINER2017]
Shpiner, A., Haramaty, Z., Eliad, S., Zdornov, V., Gafni, B., and E. Zahavi, "Dragonfly+: Low Cost Topology for Scaling Datacenters", , <http://dx.doi.org/10.1109/HiPINEB.2017.11>.
[FLAJSLIK2018]
Flajslik, M., Borch, E., and M. A. Parker, "Megafly: A Topology for Exascale Systems", , <https://doi.org/10.1007/978-3-319-92040-5_15>.
[WILKE2017]
J, W. J., Sebastien, R., and T. M. Yee, "Design space exploration of the Dragonfly topology", , <https://www.researchgate.net/publication/320493515_Design_Space_Exploration_of_the_Dragonfly_Topology>.
[SINGH2005]
Arjun, S., "Load-balanced routing in interconnection networks", , <http://cva.stanford.edu/publications/2005/thesis_arjuns.pdf>.

Authors' Addresses

Dmitry Afanasiev
Roman Glebov
Yandex
Jeff Tantsura
Nvidia