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
Caching of worker function results creates a lot of extra items in the DynamoDB task table. We don't need these partial cached results because worker results returned directly to the parent invoking function, and then cached as one big result.
Solution: add a disableCache: boolean flag to worker lambda invocation that disables caching of result.
The text was updated successfully, but these errors were encountered:
Caching of worker function results creates a lot of extra items in the DynamoDB task table. We don't need these partial cached results because worker results returned directly to the parent invoking function, and then cached as one big result.
Solution: add a
disableCache: boolean
flag to worker lambda invocation that disables caching of result.The text was updated successfully, but these errors were encountered: