Internet-Draft CDNI Delivery Metadata August 2025
Bichot, et al. Expires 28 February 2026 [Page]
Workgroup:
Content Delivery Networks Interconnection
Published:
Intended Status:
Standards Track
Expires:
Authors:
G. Bichot
Broadpeak
A. Siloniz
Telefonica
G. Goldstein
Lumen Technologies

CDNI Delivery Metadata

Abstract

This specification adds to the core set of configuration metadata defined in RFC8006, providing delivery metadata to define traffic types, request delegation behavior for downstream CDN (dCDN) node selection, and request routing modes of traffic delegation.

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 28 February 2026.

Table of Contents

1. Introduction

This specification introduces a set of metadata objects and related footprint and capabilities objects that guide content delivery. The specification includes traffic types and service descriptions, dCDN node selection directives, and request routing metadata.

2. Requirements

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC2119].

3. MI.CdnSelection

MI.CdnSelection is a GenericMetadata object that allows the uCDN to indicate a preference to the dCDN, in terms of dCDN delivery arrangement selection.

Configuration metadata is required to select the dCDN delivery networks and/or transport arrangements among a set of possibilities exposed by the dCDN through the Footprint and Capability Interface (the FCI.CdnSelection object). Associated with the dCDN delivery network, there is a default selection policy that is "best-effort", i.e., the dCDN tries its best to fulfill the requested policy without providing guarantees.

For more details on Open Caching node selection, refer to the Open Casting specification [SVTA2065] and Open Caching Request Routing Functional Specification [SVTA2007]

Property: cdn-name

Property: cdn-selection

The following is an example of the MI.CdnSelection object:

{
  "generic-metadata-type": "MI.CdnSelection",
  "generic-metadata-value": {
    "cdn-name": "MULTICAST",
    "cdn-selection": "attempt-or-failed"
  }
}
Figure 1

4. MI.RequestRouting

The uCDN requires the ability to indicate whether Hypertext Transfer Protocol (HTTP) redirect, Domain Name System (DNS) redirect, and manifest rewrite are allowed, and indicate which is preferable. This is REQUIRED in cases where the uCDN would like to delegate the traffic relying on the iterative method but knows the client will not support HTTP redirection. In that case, the uCDN needs a means to force the dCDN to perform request routing based on DNS redirect (or manifest rewrite).

For more details on Open Caching request routing, refer to the Open Caching Request Routing Functional Specification [SVTA2007]

This configuration possibility is useful only if the dCDN can advertise the mode of redirection it supports. There is an ongoing discussion in the IETF CDNI group to understand the semantics behind the redirection modes currently in the Footprint & Capabilities Advertising Interface (I-DNS and I-HTTP). It is not clear whether this indicates that the dCDN supports one or both delegation modes (the request routing performed by the uCDN can only be based on DNS redirect or HTTP redirect, or both), or whether it indicates that the dCDN supports, as its own request routing mode, DNS redirect and/or HTTP redirect. The latter is REQUIRED for this new configuration object to be valid.

MI.RequestRouting is a GenericMetadata object that allows the uCDN to force the dCDN request routing mode(s) to be applied when working in iterative redirection mode. The list of redirection modes supported by the dCDN is advertised through the FCI.RedirectionMode object. The list of request routing modes supported by the dCDN is advertised through the FCI.RequestRoutingMode object documented in the Capabilities Advertisements (Section 7) section.

Property: request-routing-modes

The following example, illustrates the uCDN forcing the dCDN to use DNS or HTTP as the method for request routing in case the uCDN performs an iterative delegation (i.e., iterative redirection mode):

{
  "generic-metadata-type": "MI.RequestRouting",
  "generic-metadata-value": {
    "request-routing-modes": [ "DNS", "HTTP" ]
  }
}
Figure 2

5. MI.TrafficType

Content delivery networks often apply different infrastructure, network routes, and internal metadata for different types of traffic. Delivery of large static objects (such as software downloads), may, for example, use different edge servers and network routes than video stream delivery. In an HTTP adaptive bitrate video service, every video title corresponds to a set of video files and descriptors according to different video protocols, and this is independent of the type of service (video-on-demand, live, catch-up, etc.).

The way the video service is consumed by the user agents can vary. For instance, a segment that belongs to a video on demand (VOD) title can be requested for every moment the content is available for the user agents to consume, while a segment of live content will be only requested as long as the time-shift duration is configured for that service. Knowing those differences, a provider can implement specific strategies that will maximize performance and thereby provide more available capacity to the upstream provider. It should be noted that the dCDNs handling of the traffic types is implementation-specific and not prescribed here.

MI.TrafficType metadata defines a set of descriptors that characterize either the type or usage of the traffic, enabling providers to apply any internal configuration rules without exposing an unnecessary number of internal details. Note that the interpretation of these traffic types and application of rules, such as rate limiting or delivery pacing, are implementation specific.

Property: traffic-type

Property: hints

The following is an example of MI.TrafficType that designates VOD catch-up TV viewing:

{
  "generic-metadata-type": "MI.TrafficType",
  "generic-metadata-value": {
    "traffic-type": "vod",
    "hints": [ "catch-up"]
  }
}
Figure 3

6. MI.MediaServiceDescription

MI.MediaServiceDescription metadata defines a set of descriptors associated with a media service delegated to the dCDN. This metadata can be used by the dCDN provider to implement specific strategies that will maximize performance. Note that these strategies are implementation specific and not specified in this document. With knowledge of the streaming manifest URL, for example, the dCDN MAY implement segment prefetching strategies. Furthermore, the notion of a media service MAY allow the dCDN provider to track and monitor streaming sessions in a more comprehensive manner.

Property: manifestURL

Property: mediaServiceName

Property: maximumBitrate

The following example of MI.MediaServiceDescription pointing to the manifest of a live channel and associates a name to this channel:

{
   "generic-metadata-type": "MI.MediaServiceDescription",
   "generic-metadata-value": {
     "manifestURL": "/live/channelXYZ/index.mpd",
     "mediaServiceName": "ChannelXYZ",
     "maximumBitRate": 5000000,
   }
}
Figure 4

7. Capabilities Advertisements

This section introduces FCI objects that allow a dCDN to advertise its specific capabilities related to the MI.RequestRouting and MI.CdnSelection and objects.

7.1. FCI.RequestRouting

This object is used by the dCDN to advertise the supported request routing modes. This can be optionally used by the uCDN to further select a subset of those modes when operating one of the iterative delegation modes. See the section MI.RequestRouting (Section 4)

Property: request-routing-modes

  • Description: A list of supported request routing modes by the dCDN. This information is useful when the uCDN decides to perform a delegation in iterative mode.

  • Type: Array of strings. Values are: "DNS", "HTTP-R", or "MANIFEST_REWRITE".

  • Mandatory-to-Specify: No. If the dCDN does not advertise the supported request routing modes, they are all supported by default.

The following example advertises support for all the request routing modes:

{
  "capabilities": [
    {
      "capability-type": "FCI.RequestRouting",
      "capability-value": {
        "request-routing-modes": [
          "DNS",
          "HTTP",
          "MANIFEST_REWRITE"
        ]
      }
    }
  ]
}
Figure 5

7.2. FCI.CdnSelection

This object is used by the dCDN to advertise the network delivery arrangements supported by the dCDN.

Property: cdn-delivery-list

  • Description: A list of supported dCDN network delivery arrangements.

  • Type: Array of FCI.CdnDelivery objects that specify the allowed combinations.

  • Mandatory-to-Specify: Yes.

7.2.1. FCI.CdnDelivery

This sub-object is used to describe a particular dCDN delivery arrangement.

Property: cdn-name

  • Description: name of the downstream CDN delivery arrangement. A downstream CDN operator may own several delivery infrastructure instances which may be the subject of a different delegation. A dCDN delivery arrangement is named according to that property. The name is used with the corresponding MI.CdnSelection for pointing out one particular delivery arrangement associated with the configuration metadata.

  • Type: String.

  • Mandatory-to-Specify: Yes. The name MUST be unique among the list exposed by the Cdn-delivery-list property of the FCI.CdnSelection object.

Property: cdn-transport-type

  • Description: Main transport characteristic of the downstream CDN delivery instance.

  • Type: String. Must be one of these values: "MULTICAST", "UNICAST".

  • Mandatory-to-Specify: No. The default is unicast. There is always one default dCDN unicast delivery infrastructure/arrangement.

Property: cdn-capacity-limits

  • Description: exposes some capacity limits associated with that dCDN delivery arrangement

  • Type: An array of FCI.CapacityLimit objects as defined in [SVTA2049] and [SVTA2065]

  • Mandatory-to-Specify: No.

Property: cdn-traffic-types

  • Description: a set of traffic types supported by this dCDN delivery arrangement.

  • Type: An array of MI.TrafficType objects

  • Mandatory-to-Specify: No.

The following is an example advertising support for Multicast delivery:

{
  "capabilities": [
    {
      "capability-type": "FCI.CdnSelection",
      "capability-value": {
        "cdn-delivery-list": [
          {
            "cdn-name": "MULTICAST",
            "cdn-transport-type": "MULTICAST",
            "cdn-capacity-limit": [
              {
                "id": "capacity_limit_multicast",
                "limit-type": "ingress",
                "maximum-hard": 50000000,
                "maximum-soft": 40000000,
                "current": 15000000
              },
              {
                "id": "capacity_limit_multicast",
                "limit-type": "egress",
                "maximum-hard": 5000000,
                "maximum-soft": 4000000
              }
            ],
            "cdn-traffic-types": [
              {
                "traffic-type": "live"
              }
            ]
          }
        ]
      }
    }
  ]
}
Figure 6

8. Security Considerations

The FCI and MI objects defined in this document are transferred via the interfaces defined in CDNI [RFC8006] which describes how to secure these interfaces by protecting integrity and confidentiality while ensuring the authenticity of the dCDN and uCDN.

9. IANA Considerations

9.1. CDNI Payload Types

This document requests the registration of the following entries under the "CDNI Payload Types" registry hosted by IANA:

Table 1: CDNI Payload Types
Payload Type Specification
MI.CdnSelection RFCthis
MI.RequestRouting RFCthis
MI.TrafficType RFCthis
MI.MediaServiceDescription RFCthis
FCI.CdnSelection RFCthis
FCI.CdnDelivery RFCthis

10. Acknowledgements

The authors would like to express their gratitude to the members of the Streaming Video Technology Alliance [SVTA] Open Caching Working Group for their contributions and guidance.

Particulary the following people contribute in one or other way to the content of this draft:

11. Normative 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>.
[RFC8006]
Niven-Jenkins, B., Murray, R., Caulfield, M., and K. Ma, "Content Delivery Network Interconnection (CDNI) Metadata", RFC 8006, DOI 10.17487/RFC8006, , <https://www.rfc-editor.org/info/rfc8006>.

12. Informative References

[SVTA]
SVTA, "Streaming Video Technology Alliance Home Page", <https://www.svta.org>.
[SVTA2007]
SVTA, "Open Caching Request Routing Functional Specification", <https://svta.org/documents/SVTA2007>.
[SVTA2049]
SVTA, "Capacity Insights Interface", <https://svta.org/documents/SVTA2049>.
[SVTA2065]
SVTA, "SVTA Open Casting", <https://svta.org/documents/SVTA2065>.

Authors' Addresses

Guillaume Bichot
Broadpeak
France
Alfonso Siloniz
Telefonica
Spain
Glenn Goldstein
Lumen Technologies
United States of America