Nick Vatamaniuc

Results 338 comments of Nick Vatamaniuc

> it's hard enough to get CI to run for one pull request. I'll do it this time but I really don't like this idea at all. I separated out...

Per-db compaction schedule is not something we support. If the two types of databases have very different sizes could try using `min_size` / `max_size` or `min_priority` / `max_priority` channel configurations...

`.ini` files are read in a hierarchy. The later ones override the early ones. It goes something like `default.ini`, `default.d/*.ini`, `local.ini` and `local.d/*.ini`. The `*.ini` ones are sorted, so typically...

From what I remember from a while back, close-wait means the remote client closed the connection, then, our (server) kernel found out about it, and is now waiting on the...

It's hard to compare architectures, it depends on the requirements. For instance some of our larger clusters have 30+ nodes and our load balancer handles 100k concurrent open connections. Even...

We have put fix to close connections proactively in CouchDB in https://github.com/apache/couchdb/pull/4736. That fix should be in the 3.4.x series. Thanks for your report @MohammadrezaNasrabadi.

Thanks for your report @zmara. Yeah it's a known deficiency that`$or` doesn't use an index. It would have to effectively use use the two or indexes and merge them appropriately,...

Thanks, @hkcomori. That might work, seeing as Erlang supports unix sockets https://www.erlang.org/doc/apps/kernel/inet#t:local_address/0, and assuming mochiweb will transparently pass it through.

@laisuchoa thanks again for reaching out and reporting the issue. It should be fixed in the latest Apache CouchDB 3.5.0 version - both the default limit value is raised, and...