Nick Vatamaniuc

Results 229 comments of Nick Vatamaniuc

Closing as there has been no activity in a while. Hopefully the suggested reply helped.

This looks like a bug with url parsing. Specifically, it looks like it's in the _session (cookie) auth plugin in replicator. If you're willing to try an experiment, see if...

@JakeHillion thank you for checking. `nxdomain` is the error from failing to resolve the host with DNS. In this case it's an IP already just in the IPv6 format. So...

I think it would be hard to justify adding support for multiple _bulk-docs formats at this point since it's a fairly established API at this point. Adding modes would make...

@ronag thanks for your report. `key` effectively behaves as if we are setting both `startkey=$key&endkey=$key`. So every time it is parsed it does exactly that. However, we do have "keys"...

@ronag The precedence is in the order the parameters are specified. For example: ``` http $DB/db/_all_docs'?endkey="b"&key="a"&key="c"' ``` Will set endkey to `b` then set both `startkey` and `endkey` to `a`...

@abarbosa-godaddy yeah, that's the idea of the tag. To do some validation that some parameters are mutually exclusive.

We have https://github.com/apache/couchdb/tree/main/src/weatherreport which can diagnose some of the issues, maybe we can enhance to check for more things?

@jiahuili430 quite impressive, well done! I wonder if it would make it easier to review if we could extract some the changes into a preliminary PR so to speak. Basically...

Something similar might be possible with the new Fair Share replicator algorithm by assigning jobs to different _replicator dbs (`low/_replicator`, `high/_replicator`) then adjusting shares accordingly via the the _config/ API....