Manage Replications
We show how to create and manage a replication.

Quickly replicate data
Here are the available Replication Mode:

For Incremental mode, you need to select a Primary Key (PK) and an Update Key (UK).

We can even deploy the replication YAML files to Sling Cloud using the
sling cloud
commands. This is useful especially when replication configurations need to be version controlled.First you'll need to generate your API Key. This can be done in Settings > Profile > API Key, which will give you
SLING_PROJECT
and SLING_API_KEY
values.
Now we can use the
sling
command to deploy.Mac
Linux
Windows
$ export SLING_PROJECT=...
$ export SLING_API_KEY=...
$ sling cloud deploy /path/to/replication.yaml
$ export SLING_PROJECT=...
$ export SLING_API_KEY=...
$ sling cloud deploy /path/to/replication.yaml
$ $env:SLING_PROJECT='...'
$ $env:SLING_API_KEY='...'
$ sling cloud deploy /path/to/replication.yaml
Last modified 1mo ago