Amazon Elastic File System – Production-Ready in Three Regions
1–10 of 122 posts
Re: Amazon Elastic File System – Production-Ready in Three Regions
#2Re: Amazon Elastic File System – Production-Ready in Three Regions
#3Since EFS was not available, I was trying to develop a FUSE filesystem that writes data to both S3 and local filesystem (EBS) for durability and read only from local filesystem for performance. Even though it's cheaper than EFS, it's slow since each file needs to be sent to S3 individually. Our requirements are not that much because the files are immutable, there are not many files (I heard that EFS doesn't work well with many small files.), no need for concurrent access. I think I will give it a shot since it also fits our use-case.
Re: Amazon Elastic File System – Production-Ready in Three Regions
#4Can EFS be mounted from the Lambda environment?
Re: Amazon Elastic File System – Production-Ready in Three Regions
#5Can EFS be mounted from the Lambda environment?
Not at present. I would be interested in learning about use cases for this. Post here or find me online, as you wish.
Re: Amazon Elastic File System – Production-Ready in Three Regions
#6Re: Amazon Elastic File System – Production-Ready in Three Regions
#7Can EFS be used as a volume for ECS tasks?
Re: Amazon Elastic File System – Production-Ready in Three Regions
#8Re: Amazon Elastic File System – Production-Ready in Three Regions
#9Can EFS be mounted from the Lambda environment?
Not at present. I would be interested in learning about use cases for this. Post here or find me online, as you wish.
Depending on how they wrote their code, if the Lambda could seek to the right part of the file then this would work, but if it has to load the entire file into RAM anyway, then it wouldn't gain them much except perhaps a slightly easier way to get the file into RAM.
Re: Amazon Elastic File System – Production-Ready in Three Regions
#10I can see people using this to deploy code by deploying onto the shared volume so that all their instances get an "instant update". Which is great when it works, but lord help you when EFS goes down and every app server you have is hung on a broken NFS connection.