We recently moved our production Rails app from Heroku over to Render. Heroku had a 2TB outgoing bandwidth limit per app/month whereas Render has 100gb (and then $0.10/gb after that). I didn’t think this would be much of an issue but apparently we will run into some limit issues on our app since it’s used up about 6gb in the first day, and the app is much busier on the weekends.
Currently we:
- Set the config.asset_host to an external CDN, but this only affects a small part of the data
- Serve most other images/etc from DigitalOcean buckets
I’m considering using Rack Deflater to compress pages since it seems most of the data being used is from the larger page sources we have to serve. But I don’t know at which point bandwidth is calculated, especially since pages are almost definitely already compressed by Render.
Is using Rack Deflater safe/beneficial? And are there any other suggestions for lowering bandwidth for page source.