Logo

dev-resources.site

for different kinds of informations.

redis ACTION REQUIRED: Version approaching end of life

Published at
8/29/2024
Categories
heroku
rails
deployment
Author
ugifractal
Categories
3 categories in total
heroku
open
rails
open
deployment
open
Author
10 person written this
ugifractal
open
redis ACTION REQUIRED: Version approaching end of life

A few days ago, I received an email from Heroku for upgrading Redis 6.2.14 to 7.2 due to a deprecated issue.

And to follow up on this warning, I asked my client to upgrade the Redis version. Once approved, here are my steps to upgrade Redis:

I used heroku CLI for upgrading Redis.

Login to Heroku

heroku login
Enter fullscreen mode Exit fullscreen mode

Show all apps on Heroku

heroku apps
Enter fullscreen mode Exit fullscreen mode

Show current Redis version

heroku redis:info -a <APP_NAME>
Enter fullscreen mode Exit fullscreen mode

Replace <APP_NAME> by your real app name.

Perform or schedule the upgrade using

heroku redis:upgrade <REDIS_NAME> --version <VERSION> -a <APP_NAME>
Enter fullscreen mode Exit fullscreen mode

Replace <REDIS_NAME> by your Redis instance name, use the name from the heroku redis:info result.
replace <VERSION> by Redis's target version.

Example:

redis:upgrade redis-octagonal-30151 --version 7.2 -a super-app
Enter fullscreen mode Exit fullscreen mode

You can check again using heroku redis:info to know when the upgrade would be performed by heroku.

heroku Article's
30 articles in total
Favicon
When (Tech Service) Relationships Don’t Work Out
Favicon
Ferrum Doesn’t Work on Heroku?
Favicon
Handbook to migrate your Postgres from Heroku to Kamal
Favicon
Deploy your Preprod and Production Rails Application using Kamal
Favicon
How To Deploy Django On Heroku Using Automatic Deployment from GitHub
Favicon
Sherlock Holmes: The Case Of App Not Found
Favicon
Own Heroku Review Apps with GitHub Actions and Kamal 2
Favicon
Copy Config Vars from One Heroku App to Another
Favicon
Why Haven’t You Upgraded to HTTP/2?
Favicon
Leveling Up My GraphQL Skills: Real Time Subscriptions
Favicon
Self-hosted alternative to Heroku - Ptah.sh
Favicon
Bokeh an interesting data tool in python for data visualization
Favicon
How to implement Coolify, the self-hosted alternative to Heroku
Favicon
redis ACTION REQUIRED: Version approaching end of life
Favicon
Import the database from the Heroku dump
Favicon
Create and Connect to an Azure SQL Database on Heroku: A Step-By-Step Guide
Favicon
Buh-Bye Webpack and Node.js, Hello Rails and Import Maps
Favicon
How to Set Up Strapi and Deploy on Heroku
Favicon
Career Change: Corporate Ladder to Software Developer 🌟
Favicon
🌟 Corporate Ladder to Software Developer 🌟
Favicon
Exploring Key Features of Heroku and AWS: A Comparative Analysis
Favicon
how to deploy backend
Favicon
Installing Playwright on Heroku for Programmatic Node.js Browser Automation
Favicon
5 Simple Steps to Get Your Test Suite Running in Heroku CI
Favicon
When You Need More Power Than a Lambda Provides
Favicon
Deploying NestJS Apps to Heroku: A Comprehensive Guide
Favicon
Heroku for ChatOps: Start and Monitor Deployments from Slack
Favicon
How to Setup a Project That Can Host Up to 1000 Users for Free
Favicon
How to Heroku: Launch Your First App Webinar
Favicon
Working with Heroku Logplex for Comprehensive Application Logging

Featured ones: