nickva commented on issue #5004:
URL: https://github.com/apache/couchdb/issues/5004#issuecomment-2526607185
```
Replication `feeafdc2574e1244f85cfe9c724cfa11+continuous`
(`http://pollux.vs.uni-kassel.de:5984/registry/` ->
`http://couchdb-svc-couchdb:5984/registry/`)
failed: {http_request_failed,"PUT",
"http://pollux.vs.uni-kassel.de:5984/registry/_local/feeafdc2574e1244f85cfe9c724cfa11",
{error,{code,500}}}
```
That looks like checkpointing on the source failed. And you're right to show
the logs on the source:
```
couchdb-1 | [notice] 2024-12-08T21:11:28.740645Z nonode@nohost
<0.11889.134>
b1bf5d5d4f pollux.vs.uni-kassel.de:5984 141.51.110.126 admin
PUT /registry/_local/feeafdc2574e1244f85cfe9c724cfa11 500 ok 6
couchdb-1 | [error] 2024-12-08T21:11:28.740686Z nonode@nohost <0.11859.134>
--------
gen_server <0.11859.134> terminated with reason: no match of right hand
value
{error,enospc} at couch_btree:write_node/3(line:483)
```
The `{error,enospc}` indicates that the disk on that host doesn't have any
more space. That happens the replication is trying to checkpoint on the source.
You can find a way to make more space there (not that much even as local doc
checkpoints are not that large) or bypass checkpointing altogether with
[use-checkpoints](https://docs.couchdb.org/en/stable/config/replicator.html#replicator/use_checkpoints
) = `false`. Without checkpointing
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]