akka-http
akka-http copied to clipboard
The Streaming-first HTTP server/module of Akka
# Pull Request Checklist * [y ] Have you read through the [contributor guidelines](./CONTRIBUTING.md)? * [y] Have you signed the [Lightbend CLA](https://www.lightbend.com/contribute/cla)? * [n] Have you updated the documentation? //...
## Purpose Simple reverse proxy directive that will send the current request to a specified destination and return the response back to the caller. ## References Resolves #240 ## Changes...
Refs #2614 ## Purpose ## References References #xxxx ## Changes ## Background Context
Fixes #2554 Missing: * examples and documentation * release note entry about behavior change of optional for `CredentialsRejected` case
Currently, in a situation of a high `idle-timeout`, a large `max-open-requests` queue, and a troubled slowly-responding server, the queue is going to fill up. Once the server recovers, potentially very...
This commit introduces a first attempt at a generic statistics and metrics mechanism to akka-http, so we can allow users to use their monitoring implementation of choice. Metrics are sent...
Shared connection pools are maintained per proxy host, ignoring the target host, since that proxy is the thing we're making actual TCP connections to. If Http.outgoingConnection is invoked directly, proxy...
The `Uri.withFragment` function does not allow one to set an empty fragment, which is allowed by the IETF spec I believe, and by the Uri constructor, as shown: ```scala import...
Not only for the server-side (i.e. for consuming file-uploads) but also for the client-side where servers may return `multipart/byteranges` or other multipart datastructures. Information it should contain: * how to...
Many people have attempted to write an `aroundRequest` directive that captures the full request / response cycle to precisely measure and log processing times. It needs to take into regard:...