Network Working Group | O. Finkelman |
Internet-Draft | Qwilt |
Intended status: Standards Track | S. Mishra |
Expires: August 16, 2018 | Verizon |
February 12, 2018 |
CDNI SVA Request Routing Extensions
draft-finkelman-cdni-rr-sva-extensions-00
The Open Caching working group of the Streaming Video Alliance is focused on the delegation of video delivery requests from commercial CDNs to a caching layer at the ISP. In that aspect, Open Caching is a specific use case of CDNI, where the commercial CDN is the upstream CDN (uCDN) and the ISP caching layer is the downstream CDN (dCDN).
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 RFC 2119.
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 August 16, 2018.
Copyright (c) 2018 IETF Trust and the persons identified as the document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.
This document defines objects needed for Open Caching request routing. For that purpose it extends CDNI metadata [RFC8006] and CDNI Footprint and Capabilities [RFC8008]. For consistency, this document follows the CDNI notation of uCDN (the commercial CDN) and dCDN (the ISP caching layer).
The CDNI metadata interface is described in [RFC8006].
The CDNI footprint and capability interface is described in [RFC8008].
This document reuses the terminology defined in [RFC6707], [RFC8006], [RFC8007], and [RFC8008].
Additionally, the following terms are used throughout this document and are defined as follows:
Open Caching uses iterative request redirect as defined in [RFC7336]. In order for the uCDN to redirect to the dCDN it requires redirect target addresses. The redirect targets are defined as part of the Footprint and Capabilities interface.
Example of Redirect Target Capability object (which contains two target-address objects) that describes which target addreses in the dCDN the uCDN should use in order to redirect the client to the dCDN.
{ "capabilities": [ { "capability-type": "FCI.RedirectTargetes", "capability-value": { "target-addresses": [ "endpoints": [ "a.service123.dcdn.example.com", "b.service123.dcdn.example.com" ], "endpoints": ["c.service123.dcdn.example.com"] ] }, "footprints": [ <Footprint objects> ] } ] }
A target-address object describes the address to be used by the uCDN when redirecting a client to the dCDN.
Endpoints within a target-address object MUST be treated as equivalent/equal. A dCDN can specify an array of target-addresses, ordered by preference, within a RedirectTargets capability object. Then, for each target-address object ranked by preference, a dCDN can specify an array of endpoints that are equivalent (e.g., a pool of servers that are not behind a load balancer).
Example of Target Address object (which contains two endpoint objects) that descibes which endpoint addreses in the dCDN the uCDN should use in order to to redirect the client to the dCDN.
"endpoints": [ "a.service123.dcdn.example.com", "b.service123.dcdn.example.com" ]
Open Caching requires that the uCDN should provide fallback servers to the dCDN to be used in cases where the dCDN cannot properly handle the request. To avoid redirect loops, the fallback servers' addresses at the uCDN MUST be differnet than the original address at the uCDN from which the client was redirected to the dCDN. The uCDN MUST avoid further redirection when receiving the client request at the fallback server address. The fallback server is defined as a generic metadata object (see section 3.2 of [RFC8006])
Example of MI.Fallback Metadata object (which contains two fallback-address objects) that describes which hosts addreses in the uCDN the dCDN should use in order to redirect the client back to a fallback address at the uCDN.
{ "generic-metadata-type": "MI.Fallback", "generic-metadata-value": { "fallback-addresses": [ { "endpoints": [ "fallback-a.service123.ucdn.example", "fallback-b.service123.ucdn.example" ], "protocol": "http/1.1" }, { "endpoints": ["fallback-c.service123.example"], "protocol": "http/1.1" } ] } }
A fallback-address object describes the address to be used by the dCDN when redirecting a client back to the dCDN due to failure, error, or other conditions in the dCDN.
Endpoints within a fallback-address object MUST be treated as equivalent/equal. A uCDN can specify an array of fallback-addresses, ordered by preference, within a Fallback metadata object. Then, for each fallback-address object ranked by preference, a uCDN can specify an array of endpoints that are equivalent (e.g., a pool of servers that are not behind a load balancer).
Example of Fallback Address object (which contains two endpoint objects) that descibes which endpoint addreses in the uCDN the dCDN should use in order to to redirect the client to the uCDN.
{ "endpoints": [ "fallback-a.service123.ucdn.example", "fallback-b.service123.ucdn.example" ], "protocol": "http/1.1" }
This document requests the registration of the following CDNI Payload Types under the IANA CDNI Payload Type registry [RFC7736]:
Payload Type | Specification |
---|---|
FCI.RedirectTargetes | RFCthis |
MI.Fallback | RFCthis |
[RFC Editor: Please replace RFCthis with the published RFC number for this document.]
Purpose: The purpose of this payload type is to distinguish RedirectTargets FCI objects
Interface: FCI
Encoding: see Section 2
Purpose: The purpose of this payload type is to distinguish Fallback MI objects (and any associated capability advertisement)
Interface: MI/FCI
Encoding: see Section 3
This specification is in accordance with the CDNI Metadata Interface and the CDNI Request Routing: Footprint and Capabilities Semantics. As such, it is subject to the security considerations as defined in [RFC8006] and [RFC8008] respectively.
TBD.
TBD.
[RFC7736] | Ma, K., "Content Delivery Network Interconnection (CDNI) Media Type Registration", RFC 7736, DOI 10.17487/RFC7736, December 2015. |