From 1e6a3ddd6e21e829298e357a38914407ab90bc9e Mon Sep 17 00:00:00 2001 From: "data-plane-api(CircleCI)" Date: Wed, 1 May 2019 15:43:37 +0000 Subject: [PATCH] server: change hot restart parent<-->child protocol, remove stats shared memory (#5910) Signed-off-by: Fred Douglas Mirrored from https://github.com/envoyproxy/envoy @ b6c23c5c9f3454b677ad159d7c551694ed771016 --- envoy/admin/v2alpha/server_info.proto | 8 +++----- envoy/api/v2/cds.proto | 3 --- envoy/api/v2/lds.proto | 3 --- 3 files changed, 3 insertions(+), 11 deletions(-) diff --git a/envoy/admin/v2alpha/server_info.proto b/envoy/admin/v2alpha/server_info.proto index 13dea7ae..0a4506f1 100644 --- a/envoy/admin/v2alpha/server_info.proto +++ b/envoy/admin/v2alpha/server_info.proto @@ -114,11 +114,9 @@ message CommandLineOptions { // See :option:`--mode` for details. Mode mode = 19; - // See :option:`--max-stats` for details. - uint64 max_stats = 20; - - // See :option:`--max-obj-name-len` for details. - uint64 max_obj_name_len = 21; + // max_stats and max_obj_name_len are now unused and have no effect. + uint64 max_stats = 20 [deprecated = true]; + uint64 max_obj_name_len = 21 [deprecated = true]; // See :option:`--disable-hot-restart` for details. bool disable_hot_restart = 22; diff --git a/envoy/api/v2/cds.proto b/envoy/api/v2/cds.proto index 6fb858ef..d659ef80 100644 --- a/envoy/api/v2/cds.proto +++ b/envoy/api/v2/cds.proto @@ -58,9 +58,6 @@ message Cluster { // :ref:`statistics ` if :ref:`alt_stat_name // ` is not provided. // Any ``:`` in the cluster name will be converted to ``_`` when emitting statistics. - // By default, the maximum length of a cluster name is limited to 60 - // characters. This limit can be increased by setting the - // :option:`--max-obj-name-len` command line argument to the desired value. string name = 1 [(validate.rules).string.min_bytes = 1]; // An optional alternative to the cluster name to be used while emitting stats. diff --git a/envoy/api/v2/lds.proto b/envoy/api/v2/lds.proto index 4da5a461..2ecfce3f 100644 --- a/envoy/api/v2/lds.proto +++ b/envoy/api/v2/lds.proto @@ -46,9 +46,6 @@ message Listener { // The unique name by which this listener is known. If no name is provided, // Envoy will allocate an internal UUID for the listener. If the listener is to be dynamically // updated or removed via :ref:`LDS ` a unique name must be provided. - // By default, the maximum length of a listener's name is limited to 60 characters. This limit can - // be increased by setting the :option:`--max-obj-name-len` command line argument to the desired - // value. string name = 1; // The address that the listener should listen on. In general, the address must be unique, though