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
One communication channel we have yet to cover so far is AWS SQS. We could use it to communicate between functions, with the main limitation being the low message size (256 kB) and the need for base64 encoding.
Steps for the solution:
Allocate the SQS client and select a proper queue.
Implement a new indirect channel.
Implement splitting serialized data across multiple packets.
Add tests covering the new communication method.
The text was updated successfully, but these errors were encountered:
One communication channel we have yet to cover so far is AWS SQS. We could use it to communicate between functions, with the main limitation being the low message size (256 kB) and the need for base64 encoding.
Steps for the solution:
The text was updated successfully, but these errors were encountered: