Gzip compression not used in all files.

0

Hello there,
today we noticed that some files(not all) are not gzip'ed although the client request the gzip version.

Here are two examples, one that is gziped and the other that is not. Both of these files are on the same bucket, from the same origin, with the same properties.

Gziped: https://js.chatservice.co/v0/tracker.js
NOT gziped: https://js.chatservice.co/v0/click-chat.js

Cloudfront has Compress Objects Automatically to Yes.
We are not really sure what to check next to be able to serve all files gziped.

Any help would be greatly appreciated.

Best,
Thanos

Edited by: ThanosDi on Jul 17, 2019 12:27 AM

asked 5 years ago252 views
3 Answers
0
Accepted Answer

There you go!

https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/ServingCompressedFiles.html
"CloudFront determines whether the file is compressible: ... The file size must be between 1,000 and 10,000,000 bytes."

Also, depending on cache settings, don't forget to Invalidate between tests.

answered 5 years ago
profile picture
EXPERT
reviewed 22 days ago
0

Hi Thanos,

Be sure your source files on S3 have 'Cache-Control' AND 'Content-Type' metadata set (under properties). For content-type for javascript, I believe use value: text/javascript
If I recall correctly, this must be set for compression to work.

If you have made changes (from above, or just trying things before), be sure to invalidate the path in CloudFront:
https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html

Invalidation is required if any changes on s3 or it will drive you nuts - making changes and nothing happens.

Hope this helps. Let me know if it works or not.

answered 5 years ago
profile picture
EXPERT
reviewed 22 days ago
0

Thank you Lily.
I checked both files and they both have the same metadata(only content-type: application/javascript)

Both files are the same in terms of metadata, how they were uploaded, where they are hosted, etc. the only thing that change is the size.

Is it possible that the click-chat file is not gziped due to the low file size? (Size 841.0 B) compared to tracker (Size 68.3 KB) that is served gziped?

answered 5 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions