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
In a couple of lambdas, we have hit/are getting close to hitting the 4K environment space limit.
While I accept we may need to look at other mechanisms to pass the information we need in to our lambdas that's a longer term project. In the interim, we wanted to serialise all of our environment data in to a string, compress it, base64 encode it, and set it as a single variable. On paper this would more than halve the space consumed.
However, what we lose is resolution of any tokens in the environment variable values.
I wondered if it were possible to provide a custom IResolvable that would know how to decode the value, resovle any embedded tokens, and re-encode the value.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
In a couple of lambdas, we have hit/are getting close to hitting the 4K environment space limit.
While I accept we may need to look at other mechanisms to pass the information we need in to our lambdas that's a longer term project. In the interim, we wanted to serialise all of our environment data in to a string, compress it, base64 encode it, and set it as a single variable. On paper this would more than halve the space consumed.
However, what we lose is resolution of any tokens in the environment variable values.
I wondered if it were possible to provide a custom IResolvable that would know how to decode the value, resovle any embedded tokens, and re-encode the value.
Alternatively, are there any other suggestions?
Thanks,
Tim
Beta Was this translation helpful? Give feedback.
All reactions