diff --git a/docs/configuration/cluster_manager/cluster.rst b/docs/configuration/cluster_manager/cluster.rst index 29e5663697148..3c2e2a153f7f1 100644 --- a/docs/configuration/cluster_manager/cluster.rst +++ b/docs/configuration/cluster_manager/cluster.rst @@ -65,7 +65,7 @@ hosts strict_dns Strict DNS clusters can specify any number of hostname:port combinations. All names will be - resolved using DNS and grouped together to form the final cluster. If multiple records are + resolved using DNS and grouped together to form the final cluster. If multiple records are returned for a single name, all will be used. For example: .. code-block:: json @@ -131,6 +131,8 @@ alt_stat_name ` will be duplicated between the standard statistics and a tree specified by this parameter (e.g., *cluster..*). +.. _config_cluster_manager_cluster_dns_refresh_rate_ms: + dns_refresh_rate_ms *(optional, integer)* If the dns refresh rate is specified and the cluster type is either *strict_dns*, or *logical_dns*, this value is used as the cluster's dns refresh rate. If this setting is not specified, diff --git a/docs/install/requirements.rst b/docs/install/requirements.rst index 28f840b860a13..63a094c52d94c 100644 --- a/docs/install/requirements.rst +++ b/docs/install/requirements.rst @@ -1,3 +1,5 @@ +.. _install_requirements: + Requirements ============ diff --git a/docs/intro/version_history.rst b/docs/intro/version_history.rst index 53ce2f30db357..5590e3e290e08 100644 --- a/docs/intro/version_history.rst +++ b/docs/intro/version_history.rst @@ -2,4 +2,37 @@ Version history --------------- 1.0.0 - Initial open source release. +===== + +Initial open source release. + +1.1.0 +===== + +* Switch from Jannson to RapidJSON for our JSON library (allowing for a configuration schema in + 1.2.0). +* Upgrade :ref:`recommended version ` of various other libraries. +* :ref:`Configurable DNS refresh rate ` for + DNS service discovery types. +* Upstream circuit breaker configuration can be :ref:`overridden via runtime + `. +* :ref:`Zone aware routing support `. +* Generic :ref:`header matching routing rule `. +* HTTP/2 :ref:`graceful connection draining ` (double + GOAWAY). +* DynamoDB filter :ref:`per shard statistics ` (pre-release AWS + feature). +* Initial release of the :ref:`fault injection HTTP filter `. +* HTTP :ref:`rate limit filter ` enhancements (note that the + configuration for HTTP rate limiting is going to be overhauled in 1.2.0). +* Added :ref:`refused-stream retry policy `. +* Multiple :ref:`priority queues ` for upstream clusters + (configurable on a per route basis, with separate connection pools, circuit breakers, etc.). +* Added max connection circuit breaking to the :ref:`TCP proxy filter `. +* Added :ref:`CLI ` options for setting the logging file flush interval as well + as the drain/shutdown time during hot restart. +* A very large number of performance enhancements for core HTTP/TCP proxy flows as well as a + few new configuration flags to allow disabling expensive features if they are not needed + (specifically request ID generation and dynamic response code stats). +* Support Mongo 3.2 in the :ref:`Mongo sniffing filter `. +* Lots of other small fixes and enhancements not listed. diff --git a/docs/operations/cli.rst b/docs/operations/cli.rst index 6c94533189bdf..809959d08e86f 100644 --- a/docs/operations/cli.rst +++ b/docs/operations/cli.rst @@ -1,3 +1,5 @@ +.. _operations_cli: + Command line options ====================