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
I'm using the get_property() function to retrieve some cluster metadata. The value is a large string about 2MB in size. Everything works as expected, but I saw a reference to a 1M size limit in the envoy docs. Is this limit referring to cluster_metadata or to something else?
Are there any issues with passing a 2mb value to a wasm filter via cluster metadata or is there an alternative anyone can recommend? (The data is actually from the crl used to configure an envoy validation_context, but I couldn't see any way to access that from the filter).
Thanks
The text was updated successfully, but these errors were encountered:
The limit you've linked to refers to the HTTP/2 METADATA frame size (see the document name). AFAIK, it's unrelated to cluster metadata or anything else in Envoy.
The only(?) concern is that you're copying 2 MB between host and Proxy-Wasm plugin each time you're accessing this data, so there is some performance overhead.
As for the alternatives, it might be easier to suggest something if you describe your use case.
Also thanks for the heads up re: performance overhead. We will do some testing to evaluate the impact.
We're using a wasm filter to check an x509 cert against a CRL. The cert is passed in via a request header, and the CRL lives on the local filesystem (stored there by an external process).
Initially, we tried to get the CRL over HTTP when the filter starts, but we didn't want to duplicate retry logic and failure handling, which is already handled by the external process (envoy only starts if that process runs successfully). So the next approach was to take the contents of the file and add them to the wasm filter's config or metadata. We chose metadata because there will likely be additional filters in future that will make use of the CRL data.
Hello,
I'm using the
get_property()
function to retrieve some cluster metadata. The value is a large string about 2MB in size. Everything works as expected, but I saw a reference to a 1M size limit in the envoy docs. Is this limit referring to cluster_metadata or to something else?Are there any issues with passing a 2mb value to a wasm filter via cluster metadata or is there an alternative anyone can recommend? (The data is actually from the crl used to configure an envoy validation_context, but I couldn't see any way to access that from the filter).
Thanks
The text was updated successfully, but these errors were encountered: