From 3cac029cf48cd900174037da0780691208fb463e Mon Sep 17 00:00:00 2001 From: James Spinella Date: Thu, 10 Oct 2024 12:58:16 -0400 Subject: [PATCH] Update migration.md Add note regarding KeyDB's incompatibility with Redis 7.x RDB files (format version 10). --- docs/migration.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/migration.md b/docs/migration.md index 2a39e98..6a7ae66 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -11,6 +11,8 @@ KeyDB is compatible with all Redis clients as listed [here](https://redis.io/cli This document will discuss migration from Redis to KeyDB and vice versa. In each scenario the methodology is similar. We will look at both an offline migration and a live migration for each scenario. +**Note: RDB Format 10 is not supported and therefore this guide does not apply to migrations from Redis 7.0 and above.** + ## Create a Snapshot Using [SAVE](https://docs.keydb.dev/docs/commands/#save) or [BGSAVE](https://docs.keydb.dev/docs/commands/#bgsave) you can create an RDB backup file of the database. If you are saving in production where you don't want any downtime it is recommended to use BGSAVE to prevent blocking clients as SAVE performs synchronously.