Continuous continuous replication with CouchDB on reboot

How to configure continuous replication after reboot? Continuous replication only works until the next reboot.

+5
source share
3 answers

Unfortunately, you still need to start continuous replication after the server restarts.

However, I asked this question in IRC, and it turned out that v1.1 CouchDB will most likely include a special database called _replicatorthat will save the replication settings. Thus, they will remain even after the server is restarted.

+5
source

1.3, 1.1. , _replicator. , :

{
    "_id": "my_rep",
    "source":  "http://myserver.com:5984/foo",
    "target":  "bar",
    "create_target":  true,
    "continuous": true
}

: https://gist.github.com/832610

+8

it seems like they put it back to 1.3 https://issues.apache.org/jira/browse/COUCHDB-776

+2
source

All Articles