diff --git a/.github/config/en-custom.txt b/.github/config/en-custom.txt index 3d20b10..52d7b95 100644 --- a/.github/config/en-custom.txt +++ b/.github/config/en-custom.txt @@ -908,5 +908,11 @@ SecOps kube workspace's Authorizer +idleConnection +timeoutPolicy +httpproxy +apis +backendrequest +sigs Aditi Twilio \ No newline at end of file diff --git a/resources/2025-01-gateway-timeouts.md b/resources/2025-01-gateway-timeouts.md new file mode 100644 index 0000000..a3cba57 --- /dev/null +++ b/resources/2025-01-gateway-timeouts.md @@ -0,0 +1,350 @@ +# Adding Configurable Gateway Timeouts to Radius + +* **Author**: Nick Beenham (@superbeeny) + +## Overview + + +The purpose of this feature is to allow the user to configure a timeout on the gateway for an application. This will allow the user to specify how long the gateway should wait for a response from the application before timing out. This will be useful in scenarios where the application may take a long time to respond, or where the user wants to ensure that the application responds within a certain time frame. + +## Terms and definitions + + +Route timeout: The amount of time the gateway should wait for a response from the application before timing out. +[specification](https://www.envoyproxy.io/docs/envoy/v1.14.2/api-v2/api/v2/route/route_components.proto#envoy-api-field-route-routeaction-timeout) + +## Objectives + + + +> **Issue Reference:** [#8221](https://github.com/radius-project/radius/issues/8221) + +### Goals + + +The goal of this feature is to allow the user to configure a timeout on the gateway for an application within the applications bicep file. + +### Non goals + + +None + +### User scenarios (optional) + + + +#### User story 1 +As a user, I want to be able to configure a timeout on the gateway for an application so that I can specify how long the gateway should wait for a response from the application before timing out. + + +## User Experience (if applicable) + + +**Sample Input:** + +```bicep +resource gateway 'Applications.Core/gateways@2023-10-01-preview' = { + name: 'demo-gateway' + properties: { + application: app.id + hostname: { + fullyQualifiedHostname: 'demo.somedomain.com' + } + routes: [ + { + path: '/' + destination: 'http://${ui.name}:3000' + } + { + { + timeoutPolicy: { + response: '30s' + idle: '5m' + idleConnection: '1h' + } + } + path: '/api' + destination: 'http://${api.name}' + } + ] + tls: { + certificateFrom: grimmCertificateStore.id + minimumProtocolVersion: '1.2' + } + } +} +``` + +**Sample Output:** + + + + +## Design + +### High Level Design + + +The design of this feature will require updates to the versioned datamodel, the render functions and the gateway typespec. The gateway typespec will be updated to include a timeoutPolicy object which will allow the user to configure the timeout on the gateway for an application. The render functions will be updated to render the timeoutPolicy object in the gateway resource. The versioned datamodel will be updated to include the timeoutPolicy object in the gateway resource. + +### Architecture Diagram + +![Architecture Diagram](./2025-01-gateway-timeouts/radius-timeout-arch.png) + +### Detailed Design + + + +The solution would update the specification for the gateway resource in the bicep file to include a timeoutPolicy object. This object would contain the following properties: + **request:** The amount of time the gateway should wait for a response from the application before timing out. + **backendrequest:** The amount of time the gateway should wait for a response from the application before timing out when the connection is idle. + +This maps to the gateway API timeoutPolicy - https://gateway-api.sigs.k8s.io/api-types/httproute/#timeouts-optional + +#### Advantages (of each option considered) + +The advantage of this approach is that it is simple and easy to understand. It allows the user to configure the timeout on the gateway for an application on a route by route basis within the applications bicep file. + +These proposed changes should not be breaking changes and should not require any changes to existing applications. + +#### Disadvantages (of each option considered) + + +#### Proposed Option + + +### API design (if applicable) + + +Updates to the gateway typespec to allow for timeout configuration. +```diff + +@doc("Route attached to Gateway") +model GatewayRoute { + @doc("The path to match the incoming request path on. Ex - /myservice.") + path?: string; + + @doc("The URL or id of the service to route to. Ex - 'http://myservice'.") + destination?: string; + + @doc("Optionally update the prefix when sending the request to the service. Ex - replacePrefix: '/' and path: '/myservice' will transform '/myservice/myroute' to '/myroute'") + replacePrefix?: string; + + @doc("Enables websocket support for the route. Defaults to false.") + enableWebsockets?: boolean; + + @doc("The timeout policy for the route.") + timeoutPolicy?: GatewayRouteTimeoutPolicy; +} + +@doc("Gateway route timeout policy") +model GatewayRouteTimeoutPolicy { + @doc("The response timeout in duration for the route. Defaults to 15 seconds.") + response?: string; + + @doc("The backend timeout in duration for the route. Cannot be more than the request timeout") + backendrequest?: string; + + +} +``` + +### Implementation Details + +The renderer for the gateway resource will be updated to render the timeoutPolicy object in the gateway resource. + +The versioned datamodel will be updated to include the timeoutPolicy object in the gateway resource. + + +#### Core RP (if applicable) + +### Error Handling + +Error handling is covered within the functions and Radius errors are used where appropriate. + +## Test plan + + +The existing gateway tests will be updated to include tests for the new timeoutPolicy object. This will include tests to ensure that the gateway times out correctly when the response time exceeds the configured timeout. + +## Security + + +There are no changes to current security policies. + +## Compatibility (optional) + + +There should be no compatibility issues with existing applications. + +## Monitoring and Logging + + +No additional monitoring or logging is required for this feature. + +## Development plan + + +Work will be completed in steps: +1. Update the gateway typespec to include the timeoutPolicy object. +2. Update the render functions to render the timeoutPolicy object in the gateway resource. +3. Update the versioned datamodel to include the timeoutPolicy object in the gateway resource. +4. Update the gateway tests to include tests for the new timeoutPolicy object. +5. Update the functional tests to include tests for the new timeoutPolicy object. +6. Update the documentation to include the new timeoutPolicy object. + +## Open Questions + + + +## Alternatives considered + + + +## Design Review Notes + + \ No newline at end of file diff --git a/resources/2025-01-gateway-timeouts/radius-timeout-arch.png b/resources/2025-01-gateway-timeouts/radius-timeout-arch.png new file mode 100644 index 0000000..0a4f73c Binary files /dev/null and b/resources/2025-01-gateway-timeouts/radius-timeout-arch.png differ