Memory Issue After Rails Upgrade - I upgraded a bunch of sites to Rails 7.1 recently and the ones deployed on Heroku started to show some massively increased memory usage:
Posts tagged "heroku"
January 5, 2024
October 12, 2021
Rails 7: Fix yarn missing on Heroku - When deploying Rails 6 sites to Heroku, the Ruby buildpack would detect if the webpacker gem was installed and install yarn for you automatically. With Rails 7, webpacker is no longer installed by default, so using jsbundling-rails and extras that require yarn to be installed will cause deployment errors on Heroku.
The fix is to install the nodejs buildpack. This needs to be done before the ruby buildpack. As follows:
heroku buildpacks:clear
heroku buildpacks:set heroku/nodejs
heroku buildpacks:add heroku/ruby
After running these commands your deployment to Heroku will work great.