skip to Main Content

am trying to find the doc which can help me to migrate AWS Redis cache to Azure Cache for Redis basic version

3

Answers


  1. Chosen as BEST ANSWER

    Hi there after multiple research we found the way to export and import Redis keys for the Azure Redis Cache for Basic tier ,

    we have created the Bash script to read the Keys from source and write in destination.

    *this script works only for the valid key, please find the script below

    #!/bin/bash

    while loops

    redis-cli -c -h sourcehostname -p 6379 -a accesskey KEYS '*' | while read key; do echo "Copying $key" redis-cli -c -h sourcehostname -p 6379 -a Accesskeys GET $key | while read value; do echo "Copying $value" redis-cli -c -h Targethostname -p 6379 -a Accesskey SET $key $value done echo "Pasting $key" done


  2. Yes! We have this document: Migrate to Azure Cache for Redis | Microsoft Docs

    We’ll also have a detailed migration guide coming out soon. Will update the thread with new documentation once it is out.

    Login or Signup to reply.
  3. The option to use import/export is for premium only. The others should work with basic.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search