codersofthedark
codersofthedark

Reputation: 9645

How to clear Amazon CloudFront Cache completely?

I made some changes to my origin server which now serves different data from same url.

I tried to clear my cache completely by doing the following invalidation in CF UI:

enter image description here

But this didn't work. How can I wipe off completely the Amazon CloudFront cache's in one go?

Upvotes: 23

Views: 25118

Answers (3)

Zanon
Zanon

Reputation: 30760

You need to use /* instead of /.

Also, if you need to do this frequently, you can do it using the AWS CLI.

aws cloudfront create-invalidation --distribution-id=YOUR_DISTRIBUTION_ID --paths "/*"

Edit: thanks to @speckledcarp, you need to use "/*" (with quotes) when using the CLI.

Upvotes: 20

imperalix
imperalix

Reputation: 3751

CloudFront does now support wildcard or full distribution invalidation. You will need do do one of the followng.

  • Invalidate each object that has changed
  • Invalidate /*
  • Version your objects so that they are considered new (Ie rename or querystring)

http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html#invalidating-objects-console

Upvotes: 27

Wasae Shoaib
Wasae Shoaib

Reputation: 189

According to AWS documentation you need to use /* instead of /

Upvotes: 1

Related Questions