1

http://wiki.apache.org/couchdb/Replicationの次のコードを参照してください。docs_written = docs_read ですが、progress = 3 であることに注意してください。なぜ progress = 100 ではないのでしょうか?

また、couchdbとcouchbaseに違いはありますか?

$ curl http://localhost:5984/_active_tasks
[
    {
        "pid": "<0.1303.0>",
        "replication_id": "e42a443f5d08375c8c7a1c3af60518fb+create_target",
        "checkpointed_source_seq": 17333,
        "continuous": false,
        "doc_write_failures": 0,
        "docs_read": 17833,
        "docs_written": 17833,
        "missing_revisions_found": 17833,
        "progress": 3,
        "revisions_checked": 17833,
        "source": "http://fdmanana.iriscouch.com/test_db/",
        "source_seq": 551202,
        "started_on": 1316229471,
        "target": "test_db",
        "type": "replication",
        "updated_on": 1316230082
    }
]
4

1 に答える 1

2

17333 * 100 / 551202 = 3 なので。

于 2013-06-26T20:44:13.203 に答える