Skip to main content

Export redis keys with a prefix or matching a pattern, import from exported file

Project description

Export redis keys with a given prefix or pattern, which later can be imported to another redis server. To export all keys, use ‘*’ as pattern.

Installation

To install redis-export, simply:

$ python3 -m pip install redis-export

You should add ~/.local/bin/ to your PATH.

Quick Start

redis-export PREFIX_OR_PATTERN OUTPUT_FILE
redis-import INPUT_FILE

For example,

# prefix based export
redis-export 'phonebook:' ~/d/t1.json
# pattern based export
# redis-export 'phonebook:*:name:*' ~/d/t1.json
redis-import --host redis.example.com ~/d/t1.json

For more usage help, run the command with --help option.

Documentation

redis-export will export keys with given pattern to a json file (keys and values both base64 encoded).

redis-import will import those keys and values back to redis.

Implementation Detail

  • SCAN is used to iterate over keys with given pattern.

  • DUMP is used to dump the key.

  • RESTORE is used to restore a key. force-replace param is set to TRUE.

Exported file is a json list, each list item is of form (key, dump_value). The redis key and dump value is encoded in base64 in order to fit in regular json.

Source Code

Source code is hosted at https://gitlab.emacsos.com/sylecn/redis-export

You may clone it via ssh or https protocol

git clone git@gitlab.emacsos.com:sylecn/redis-export.git
git clone https://gitlab.emacsos.com/sylecn/redis-export.git

License

Copyright (C) 2022, 2023 Yuanle Song <sylecn@gmail.com>

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.

ChangeLog

  • v0.3.0 2023-03-13

    • support auth related options. Use the same options as redis-cli.

    • add source code URL in README.rst

  • v0.2.0 2022-09-24

    • update README.rst, applied license, distributed on PyPI.

  • v0.1.2 2022-09-18

    • bugfix: when pattern contains ‘*’ should not error

  • v0.1.0 2021-11-21

    • initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

redis-export-0.3.1.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

redis_export-0.3.1-py3-none-any.whl (4.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page