Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wh1isper/redis-canal
Proxy redis stream from one to another through global queue service
https://github.com/wh1isper/redis-canal
proxy python redis
Last synced: about 1 month ago
JSON representation
Proxy redis stream from one to another through global queue service
- Host: GitHub
- URL: https://github.com/wh1isper/redis-canal
- Owner: Wh1isper
- License: bsd-3-clause
- Created: 2024-06-07T13:51:17.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-10T04:48:59.000Z (2 months ago)
- Last Synced: 2024-09-10T08:11:06.259Z (2 months ago)
- Topics: proxy, python, redis
- Language: Python
- Homepage:
- Size: 78.1 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
![](https://img.shields.io/github/license/wh1isper/redis-canal)
![](https://img.shields.io/github/v/release/wh1isper/redis-canal)
![](https://img.shields.io/docker/image-size/wh1isper/redis-canal)
![](https://img.shields.io/pypi/dm/redis-canal)
![](https://img.shields.io/github/last-commit/wh1isper/redis-canal)
![](https://img.shields.io/pypi/pyversions/redis-canal)
[![codecov](https://codecov.io/gh/Wh1isper/redis-canal/graph/badge.svg?token=DI8L42sAMw)](https://codecov.io/gh/Wh1isper/redis-canal)# redis-canal
Proxy redis stream from one to another through global queue service.
Motivation: Redis provided on the cloud is usually only available within a VPC and does not provide external access. We want to provide a way to synchronize messages across clouds without going through a VPN.
![Architecture Overview](./assets/Architecture.png)
## Supported queue service
- [x] AWS SQS
- [x] Google PubSubWelcome to contribute more queue service, see [adapter/impl](./redis_canal/adapter/impl/) for more details.
We also support the plugin system, the adapter can also be imported as a third-party library. See [example](./example/extension/custom-adapter/) for more details.
## Install
`pip install redis-canal[all]` for all components.
Or use docker image
`docker pull wh1isper/redis-canal`
## Usage
Use CLI
- `redis-canal stream-to-queue` to start a daemon to consume redis stream and push to global queue
- `redis-canal queue-to-stream` to pull from global queue and push to redis streamCLI args support `envvar`, which you can refer to [envs.py](./redis_canal/envs.py).
## TODO
- More adapter for Google PubSub, Kafka, etc
- Allows users to more easily configure the adapter(Now only support environment variables, within `Adapter`)## Develop
Install pre-commit before commit
```
pip install pre-commit
pre-commit install
```Install package locally
```
pip install -e .[test]
```Run unit-test before PR
```
pytest -v tests
```### Develop sqs adapter
You need to configure your AWS account first. See [AWS CLI docs](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html) for more details.
Make sure your account has `sqs:*` permission. Then you can run `pytest -v tests/adapter/test_sqs_adapter.py` to test it.