You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/root/version_history/current.rst
+1
Original file line number
Diff line number
Diff line change
@@ -85,3 +85,4 @@ Deprecated
85
85
* gzip: :ref:`HTTP Gzip filter <config_http_filters_gzip>` is rejected now unless explicitly allowed with :ref:`runtime override <config_runtime_deprecation>` `envoy.deprecated_features.allow_deprecated_gzip_http_filter` set to `true`.
86
86
* logging: the `--log-format-prefix-with-location` option is removed.
87
87
* ratelimit: the :ref:`dynamic metadata <envoy_v3_api_field_config.route.v3.RateLimit.Action.dynamic_metadata>` action is deprecated in favor of the more generic :ref:`metadata <envoy_v3_api_field_config.route.v3.RateLimit.Action.metadata>` action.
88
+
* stats: the `--use-fake-symbol-table` option is removed.
Copy file name to clipboardexpand all lines: source/docs/stats.md
+1-6
Original file line number
Diff line number
Diff line change
@@ -193,19 +193,14 @@ with a format-check, but we can determine whether symbol-table lookups are
193
193
occurring during via an admin endpoint that shows 20 recent lookups by name, at
194
194
`ENVOY_HOST:ADMIN_PORT/stats?recentlookups`.
195
195
196
-
As of October 6, 2020, the "fake" symbol table implementation has been removed
197
-
from the system, and the "--use-fake-symbol-table" option is now a no-op,
198
-
triggering a warning if set to "1". The option will be removed in a later
199
-
release.
200
-
201
196
### Symbol Table Class Overview
202
197
203
198
Class | Superclass | Description
204
199
-----| ---------- | ---------
205
200
SymbolTable | | Abstract class providing an interface for symbol tables
206
201
SymbolTableImpl | SymbolTable | Implementation of SymbolTable API where StatName share symbols held in a table
207
202
SymbolTableImpl::Encoding | | Helper class for incrementally encoding strings into symbols
208
-
StatName | | Provides an API and a view into a StatName (dynamic orsymbolized). Like absl::string_view, the backing store must be separately maintained.
203
+
StatName | | Provides an API and a view into a StatName (dynamic or symbolized). Like absl::string_view, the backing store must be separately maintained.
209
204
StatNameStorageBase | | Holds storage (an array of bytes) for a dynamic or symbolized StatName
210
205
StatNameStorage | StatNameStorageBase | Holds storage for a symbolized StatName. Must be explicitly freed (not just destructed).
211
206
StatNameManagedStorage | StatNameStorage | Like StatNameStorage, but is 8 bytes larger, and can be destructed without free().
0 commit comments