Self-hosted, source-available AI data platform for batch pipelines, CDC, scheduled models, and lineage. Describe a pipeline in plain English, approve the plan, and see exactly what ran, failed, or became stale.
You describe the pipeline in plain English. It resolves the plan, then stops for your approval — batch, CDC, or changes-only — before a single row moves.
rsync.ai moves data between databases, warehouses, object stores and APIs. You describe the job in a sentence; an agent turns it into an explicit, staged plan, pauses for you when something is ambiguous, and executes it on Temporal so a long sync survives restarts. Batch and change-data-capture are both first-class. Twenty-one connectors ship in the box.
It is source-available under the Elastic License 2.0: run it, modify it, and use it internally for free — you just cannot resell it as a hosted service. The full summary is below.
- Batch and CDC pipelines. Batch loads between the connectors below, plus Debezium-backed change data capture from PostgreSQL, MySQL, SQL Server, Oracle and MongoDB. A run pauses for your decision where the request is ambiguous, and each stage reports what it did. → PostgreSQL CDC · PostgreSQL to MySQL · Shopify to PostgreSQL
- Scheduled, dependency-aware SQL models. Save a query as a model and rebuild it on a cron, an interval, or after the pipeline or model it reads from finishes; edits to scheduled SQL need an admin's approval, and a freshness deadline flags a table that stopped moving. → Scheduled SQL models
- Data Explorer and lineage. Query what you connected in English or SQL, and see which pipelines write which tables and which models read them. Lineage is table-level, and the lineage view is recent — its page states how far it has been verified. → Data Explorer · Lineage and observability
- Versioned MCP connectors. Each of the 21 connectors runs as its own versioned container, so you can upgrade or pin one without touching the rest. → Connector reference
More guides: all solutions.
- Install with one command — Install below. Docker is the only requirement.
- Open
http://localhost:3000and click Start with sample data. The stack bundles asample-datasource and a throwawaydemo-warehousePostgreSQL, so this needs no credential of your own. - In
/chat, ask for "sync customers and orders from sample data to the demo warehouse", pick the tables, and confirm.
That path is a batch pipeline. CDC, Shopify and your own databases need a source of your own — see the quickstart and the self-hosting guide.
flowchart LR
U["You, in plain English"] --> FE["Frontend<br/>Next.js"]
FE --> GW["API Gateway<br/>Go"]
GW --> ORCH["Orchestrator<br/>Go workers"]
ORCH --> TMP["Temporal<br/>durable workflows"]
TMP --> CON["MCP connectors<br/>versioned containers"]
CON --> DATA[("Your sources and<br/>destinations")]
For CDC, Debezium on Kafka Connect and a sink worker carry the change stream; they start with the rest of the default install. ARCHITECTURE.md explains why each piece was chosen, and docs/architecture/overview.md has the component and data-flow diagrams.
- What it does
- Quick start
- How it fits together
- Install — Docker · Kubernetes
- What you get
- Connectors
- The Data Explorer
- How it works
- Requirements
- Documentation
- Development
- Project status
- Community and support
- License
curl -sSL https://raw.githubusercontent.com/rsync-ai/rsync/main/install.sh | bashRequires Docker and nothing else. The installer asks which LLM you want — your own
OpenAI key, the Ollama it bundles, or none for now — generates every other secret itself,
and starts the full stack. Choose Ollama and there is no key to find and no model to pull
by hand: the stack ships an Ollama container and a one-shot job that downloads the model
before anything that would ask for one starts. Choose none and pipelines, raw SQL and the
shipped connectors still work; the LLM features say Set up an LLM first until you add one
(which LLM is used). Open
http://localhost:3000 when it finishes. If
the stack does not come up, the installer says so and exits non-zero — it does not print a
success banner over a dead stack.
Which code you get.
v0.1.5, the current release. Both halves of the install come from that one tag: the compose file is fetched fromRSYNC_REFand the images are pulled at a tag derived from it, so the file and the containers it starts are the same commit. Every image the default compose starts is published at that tag and pullable anonymously — a test pins that, so a release cannot ship half-built.What it starts. Everything needed for both sync modes, change data capture included — Kafka Connect, Debezium and the sink worker come up with the rest. They are not an add-on: pick a streaming sync without them and the run fails a pre-flight two minutes in rather than falling back to batch. On a machine that will only ever run batch syncs,
curl -sSL … | RSYNC_PROFILES= bashleaves the JVM out and drops the memory floor back to 6 GB.Settings go on the
bashside of the pipe. AVAR=xwritten beforecurlsets it forcurl, which never reads it, and the installer runs with the default — no error, just the setting silently ignored. That is true of every variable here.Pass
RSYNC_REF=main(ascurl -sSL … | RSYNC_REF=main bash) to track the branch instead. That install is not reproducible: the compose file comes from the branch tip and changes with every commit, whilemainimages track the last publish rather than the newest commit, so the two halves move at different rates.
Point kubectl at any cluster and run:
curl -sSL https://raw.githubusercontent.com/rsync-ai/rsync/main/install-k8s.sh | bashThat is the whole install. It generates every secret, installs the platform, the demo
warehouse and a working set of connectors, waits for the release, and prints (or, on a
terminal, opens) the two port-forwards that put the UI at http://localhost:3000. Edit
~/rsync-ai-k8s/.env and run it again to change anything — that is also the upgrade path.
Back that file up: it holds ENCRYPTION_KEY. The default install asks for about 8.8 GiB
of memory and 3.7 CPU in requests, and it measures what the cluster has left before it
starts: on a smaller cluster it trims to a set that fits — first the connectors and demo
you did not choose, then the spare api-gateway and frontend replicas — instead of leaving
pods Pending. CPU is what runs out first: a single 4-vCPU node is not enough for the
default (GKE's own DaemonSets leave ~3.4 of it), and what fits there is the trimmed set
at ~3.0 CPU. Everything it accepts is listed in the
Kubernetes guide.
Prefer to run helm yourself? A bare helm install also needs connectors.fleet set, or no
connector pod starts and no pipeline can reach a source
(why):
git clone https://github.com/rsync-ai/rsync.git && cd rsync
helm install rsync ./deploy/helm/rsync-ai \
--namespace rsync --create-namespace \
--set secrets.jwtSecret="$(openssl rand -base64 32)" \
--set secrets.encryptionKey="$(openssl rand -base64 32)" \
--set secrets.internalServiceSecret="$(openssl rand -hex 24)" \
--set secrets.postgresPassword="$(openssl rand -hex 24)" \
--set secrets.minioAccessKey="$(openssl rand -hex 16)" \
--set secrets.minioSecretKey="$(openssl rand -base64 32)" \
--set frontend.publicUrl=https://app.example.com \
--set frontend.apiUrl=https://api.example.com \
-f my-values.yaml # at least connectors.fleetThat is the evaluation footprint — in-chart Postgres, Redis, Kafka, MinIO and Temporal, one replica each, no backups. The chart runs the same images as the compose stack and can point at managed Postgres, Redis, Kafka and object storage instead; per-provider value files ship for EKS, GKE and AKS. See the Kubernetes guide for a production install.
Important
Save secrets.encryptionKey. It encrypts every stored connection credential. Read
it back with
kubectl -n rsync get secret rsync-secrets -o jsonpath='{.data.ENCRYPTION_KEY}' | base64 -d
and keep it somewhere you will still have it after the cluster is gone — reinstalling
with a different key makes every saved connection permanently undecryptable.
Tip
The chart is also published to the registry, so you can install without cloning:
helm install rsync oci://ghcr.io/rsync-ai/charts/rsync-ai --version 0.1.5 \
--namespace rsync --create-namespace \
--set secrets.jwtSecret="$(openssl rand -base64 32)" \
--set secrets.encryptionKey="$(openssl rand -base64 32)" \
--set secrets.internalServiceSecret="$(openssl rand -hex 24)" \
--set secrets.postgresPassword="$(openssl rand -hex 24)" \
--set secrets.minioAccessKey="$(openssl rand -hex 16)" \
--set secrets.minioSecretKey="$(openssl rand -base64 32)" \
--set frontend.publicUrl=https://app.example.com \
--set frontend.apiUrl=https://api.example.comThe two frontend.* flags are not optional on either path — the chart refuses to
render without them, because the browser calls the API directly and NextAuth
builds its callback URLs from publicUrl. Point them at the hostnames your
ingress will serve. No MinIO image override is needed: chart 0.1.2 onward was
repackaged after MinIO withdrew docker.io/minio/* and its values.yaml names
quay.io already. Both paths pull rsync's own images at .Chart.AppVersion
(0.1.5), and every ghcr.io/rsync-ai image the chart names is published at
that tag for both amd64 and arm64 (0.1.2 and older are amd64 only, so they will
not start on Apple Silicon, Graviton, Axion or Ampere nodes).
| Pipelines from a sentence | Type "sync MySQL orders to S3 every hour". An agent resolves it into named stages you can read before anything runs. |
| Batch and CDC, both first-class | Batch loads for anything, plus Debezium-backed change data capture on five databases — PostgreSQL, MySQL, SQL Server, Oracle and MongoDB. |
| It asks instead of guessing | When the source is ambiguous — which tables, which schema, which key — the run pauses on a human-in-the-loop gate rather than picking for you. |
| Durable execution | Stages run as Temporal workflows, so a multi-hour sync survives a restart, a redeploy, or a crashed worker. |
| You can answer "why did it do that?" | Every run emits domain events carrying stage state, row counts and a trace id, and the UI shows them stage by stage. |
| A SQL and NL query surface | The Data Explorer queries the systems you connected — no second BI tool to stand up first. |
| Your infrastructure, your keys | One Docker command or one Helm chart. Credentials are encrypted at rest with a key you hold; point the LLM at OpenAI or at the Ollama the installer bundles, or run without one. |
21 connectors ship in the box — every one is a source, 17 are also destinations, and five support change data capture. Each runs as its own versioned container, so you can upgrade or pin one without touching the rest.
| Category | Connectors | CDC |
|---|---|---|
| Relational | PostgreSQL, MySQL, SQL Server, Oracle, ClickHouse, Amazon Redshift | PostgreSQL, MySQL, SQL Server, Oracle |
| Data warehouse | Snowflake, Google BigQuery, Databricks | — |
| Document | MongoDB | MongoDB |
| Object storage | AWS S3, Google Cloud Storage, Azure Blob Storage | — |
| APIs | Stripe, Shopify, GitHub, Notion, Google Sheets | — |
| Demo and reference | Sample Data (credential-free demo source), Petstore (OpenAPI example), Widgets-GraphQL (GraphQL example) | — |
The connector reference is generated from the connector tree itself and lists exact ids, versions and per-connector source/destination support — CI fails if it drifts, and a second guard fails if the table above stops matching it. To add your own, start with the connector developer guide.
Once data has landed somewhere, you can query it without leaving rsync. Ask a question in English and get SQL back, or write the SQL yourself; browse the schema; then keep the useful ones — as a saved query with versions and diffs, or as a model: a table that rebuilds itself on a cron, an interval, or after a given pipeline finishes. Results export to CSV, TSV and JSON. See the Data Explorer guide and the deep dive on saved queries, models and schedules.
- Describe. You type "sync MySQL orders table to S3 every hour" into
/chat. An agent reads it and drafts a staged plan. - Decide. Where the request is under-specified — which tables, which schema, which primary key, which credentials — the plan stops at a human-in-the-loop gate and asks. Nothing runs until you answer. This is the single most common reason a run is waiting rather than broken.
- Provision. Connections are validated and stored encrypted; for CDC the publication and replication slot are created in the required order before Debezium is told to stream.
- Run. Each stage is a Temporal activity, so progress is checkpointed and a restart resumes rather than starts over.
- Watch. Row counts, stage state and a trace id are emitted as domain events and rendered stage by stage in the UI.
- Docker 24+ and Docker Compose v2 — or, for the Helm path, Kubernetes 1.25+ and Helm 3.8+
- 8 GB RAM minimum, 16 GB recommended — 12 GB if you let the installer bundle an LLM, which it checks and warns about before starting anything
- No API key required, and no LLM required. Bring an OpenAI key if you have one (it is
preferred when present), choose the bundled Ollama and the
installer downloads a model for you, or choose none and add one later — the features that
need a model say
Set up an LLM firstuntil then (which LLM is used)
| Quick start | Local dev setup and first pipeline |
| Solutions | PostgreSQL CDC, PostgreSQL to MySQL, Shopify to PostgreSQL, scheduled SQL models, lineage |
| Self-hosting | Production deployment with TLS |
| Kubernetes | Helm chart install on EKS, GKE, AKS, or any cluster |
| Oracle Cloud (free) | Free 4 OCPU / 24 GB VM |
| Connector reference | Every shipped source and destination |
| Connector developer guide | Build a new connector |
| Data Explorer | SQL, natural-language queries, saved models and schedules |
| Architecture | System design and data flows |
| API reference | REST + WebSocket endpoints |
| Environment variables | Full configuration reference |
| Errors | What each error code means and what to do about it |
| All docs | Full documentation index |
git clone https://github.com/rsync-ai/rsync.git
cd rsync
cp .env.example .env # add your OPENAI_API_KEY, if you have one
cp llm-service/.env.example llm-service/.env # or set LLM_PROVIDER=none here
docker compose -p rsync-ai up -d
open http://localhost:3000See CONTRIBUTING.md for building individual services, running the test suites, and the PR process.
rsync.ai is young and self-hosted. It runs, it has been driven end to end, and the connector and deployment claims on this page are checked by tests rather than asserted — but you are early. The rough edge today is Kubernetes: a managed-cluster install (EKS, GKE or AKS against real RDS, MSK and S3) has not been run end to end, so the cloud value files are reviewed starting points rather than verified recipes — the Kubernetes guide says so where you meet it. There is no hosted offering: every install is yours.
What that means in practice: pin a tag rather than tracking main if you want
reproducibility, keep ENCRYPTION_KEY somewhere durable before you store a credential,
and read CHANGELOG.md before upgrading. Bugs and gaps are tracked as
GitHub issues — that list is the register.
- Questions and help — SUPPORT.md points at the right place for each kind of question
- Bugs and feature requests — open an issue
- Contributing — CONTRIBUTING.md and the Code of Conduct
- Security — report privately, never in a public issue: SECURITY.md
- Changes between versions — CHANGELOG.md
rsync.ai is source-available under the Elastic License 2.0 (ELv2) — not an OSI "open source" license.
The LICENSE file is the binding text; the following is a plain-English summary (not
legal advice):
You can:
- Download, install, run, and modify rsync.ai on your own infrastructure
- Use it for your own internal business data pipelines
- Distribute it and your modifications under these same terms
- Contribute back to the project (see CONTRIBUTING.md)
You cannot:
- Offer rsync.ai (or a modified version) to third parties as a hosted or managed service
- Move, change, disable, or circumvent any license-key functionality
- Remove or obscure the licensing, copyright, or other notices
The rsync.ai name and logo are trademarks — see TRADEMARK.md. Licenses of bundled third-party dependencies are listed in THIRD_PARTY_NOTICES.md.
