Managed Valkey Specifics

Service operations

Currently creating and managing Valkey services is only available via Portal.

Upgrading to Managed Valkey

Existing Exoscale for Caching (formerly Redis®) customers will be required to migrate to Exoscale for Valkey by the 30.04.2025 at latest.

Migration is possible via a specific operation available in the web portal, from top right menu in the the service detail view.

Customers that will not have migrated manually by the 30.04.2025 will be migrated automatically.

Upgrade to Valkey button

Restricting connections from the internet

By default, Exoscale DBaaS are not accessible from the whole internet. Data does not transmit in clear over the network as it is SSL encrypted by default and authenticated.

To allow incoming connections to your database service, you can add a filter allowing:

  • just one IP address,
  • a network range,
  • or a combination of IP address and network range

To do this, update your service or create it with the IP filter, which is a comma separated list of CIDRs.

Managing JSON configuration settings

You can find and check all settings available for the database service in the service detail view, under the “Database Settings” tab.

Connect with valkey-cli

To connect to the Valkey database, you will need to install the valkey-cli client.

Execute the following command from a terminal window:

valkey-cli -u VALKEY_URI

To check the connection is working, execute the following command returning all Redis parameters:

INFO

You can also list the keys using the command:

KEYS *

Migrating to Exoscale for Valkey

NOTE - Due to the fact that migrations always involve interaction with third-party services running outside of Exoscale, only best-effort support is provided on all migrations.

Migrate your Redis® or Valkey server database to our Exoscale for Valkey service. There are two methods: the replication method and the scan method.

The migration first attempts to use the replication method. If the replication method fails, it uses the scan method.

The replication method is preferred for production databases because it allows for the migration of data with minimal downtime. The scan method is slower and iterates over all keys, one database at a time.

Prerequisites

  • A target Redis service - a new or an existing service.
  • The hostname, port and password of the source Redis service.
  • The source Redis service must be secured with SSL/TLS, which is the default for migration. Refer to Redis TLS support
  • A publicly accessible source Redis service (you might need to set a bind parameter to a publicly reachable network interface in your Redis configuration file). Any firewalls need to be open on port TCP 6379 if using the default to allow traffic from the source to the target servers. Also pay attention to other protections that can restrict connections: SELinux should be disabled or set in permissive mode for the duration of the migration on the source server.
  • The number of Redis databases from source to target needs to match. Use the command redis-cli config get databases. By default, Redis has 16 databases. If you are migrating more databases, adjust accordingly on the target with the command in the section below and create the target service first before migration.