Docker container restarting while uploading 100,000+ files to s3

In version 2.3.0, when uploading more than 100,000 files the container restarts.

Has anyone had this kind of problem with localstack in docker?

Hello! LocalStack S3 implementation in 2.3.0 will store S3 objects in memory if their size is under 500KB. So if you have that many objects, I believe your Docker container will run out of memory. You could try to allocate more memory to your Docker container if you’d like to try it with more data.

With 3.0.0, the behavior will be the same for the Community version of LocalStack, but the Pro one should handle it better.

Thanks @bentsku, I will test with more memory to my Docker container.