I have a lambda that gets as input array of values. The lambda's task is to download some data and compare each item in the array with the downloaded data. The comparison is performed by invoking the same lambda with the item in the array.
My question is, can i share data between the invocations? Because the data that i compare it with is weighting about 1/2 Mb's. I dont want to download the same data over over?
If there isn't a way to do so, can you pls advice about ways to approach this problem?
i have looked the /tmp file but no one guarantee that the subsequent invocation would be served from same container. and if they arent served from the same container, they cant share the /tmp file.