Questions tagged [amazon-efs]

For questions about Amazon Elastic File System (Amazon EFS), a simple, scalable, fully managed elastic NFS file system for use with AWS Cloud services and on-premises resources.

8 questions
5
votes
1 answer

Is it possible to ask AWS-EFS to automatically remove those files that never been read in a period of time?

I would like to create an online painter web app. The app would allow users to draw anything they like and save their drawings on the server. However, many "guest" users may just come and draw some random strokes then never use those randomly-made…
AGamePlayer
  • 151
  • 1
  • 3
4
votes
2 answers

In what way does a new ECS Fargate service not satisfy the task definition's required capabilities?

When creating a new AWS ECS service using a Fargate task, in the AWS Console wizard, it fails with the following error: Failed creation of Service Service creation failed: The specified platform does not satisfy the task definition’s required…
stoft
  • 273
  • 2
  • 8
4
votes
1 answer

Startup of ECS Fargate task fails with ResourceInitializationError mount.nfs4 Connection timed out

When starting up an Amazon ECS task with launch type FARGATE it fails with the following reason: ResourceInitializationError: failed to invoke EFS utils commands to set up EFS volumes: command failed with 32: failed to execute command to invoke EFS…
stoft
  • 273
  • 2
  • 8
1
vote
1 answer

Making AWS EFS Replication play nice with Terraform for disaster recovery

How do I use EFS block replication for disaster recovery when the replica volume is unknown to terraform? After breaking the replication/mirror I need to import the volume into the plan so it can become the new main with it's own replica. This…
Peter Kahn
  • 111
  • 3
1
vote
1 answer

How to mount EC2 intances to AWS EFS via Terraform

I'm trying to Terraform a few EC2 instances, and would like to automate the provisioning steps that involve mounting their filesystems to EFS. The commands to run this manually are as follows: $ sudo mkdir /var/www/html/efs-mount-point $ sudo…
0
votes
0 answers

Kubernetes: PV will not bind to PVC despite identical attributes to a PV that will

Basic Setup: AWS EKS Cluster AWS EFS for volumes Jira Service Management Confluence I have a pod that needs two statically provisioned AWS EFS volumes attached to function. This is an instance of confluence that uses a volume each for the local…
0
votes
0 answers

AWS Lambda "function couldn't connect to the Amazon EFS file system"

I have been struggling for days trying to get a deployment of Lambda+EFS that actually works I am using Pulumi in Python Everything I've tried results in: Calling the invoke API action failed with this message: The function couldn't connect to the…
Anentropic
  • 101
  • 2
0
votes
0 answers

EKS- pod stuck in containerCreating state when attached to 2 claims with RWX accessmode and efs storage class

I have pod deployed in EKS which has 2 PVCs attached, below is yaml snipped for the same - name: dev1-rwx-volume persistentVolumeClaim: claimName: dev1-rwx-volume-pvc - name: dev2-rwx-volume persistentVolumeClaim: claimName:…