[GitHub] nickva commented on issue #869: beam.smp spikes and eats all available CPU

2017-10-06 Thread git
nickva commented on issue #869: beam.smp spikes and eats all available CPU URL: https://github.com/apache/couchdb/issues/869#issuecomment-334888616 Keep an eye in the logs for emfile errors, that might mean running out of file descriptors. Also try increasing max_dbs_open if you see

[GitHub] janl commented on issue #756: Make couch_peruser a proper Erlang app

2017-10-06 Thread git
janl commented on issue #756: Make couch_peruser a proper Erlang app URL: https://github.com/apache/couchdb/pull/756#issuecomment-334851376 Bit of help from @nickva [21:25:20] the logic is mostly isolated to

[GitHub] janl commented on issue #756: Make couch_peruser a proper Erlang app

2017-10-06 Thread git
janl commented on issue #756: Make couch_peruser a proper Erlang app URL: https://github.com/apache/couchdb/pull/756#issuecomment-334828828 More @chewbranca on IRC: >jan: Wohali: as far as I'm aware, the only place in the code that does anything along the lines of a

[GitHub] janl commented on issue #995: why is insecure in the npms.io?

2017-10-06 Thread git
janl commented on issue #995: why is insecure in the npms.io? URL: https://github.com/apache/couchdb-fauxton/issues/995#issuecomment-334811874 PRs welcome. This is an automated message from the Apache Git Service. To respond

[GitHub] janl closed issue #995: why is insecure in the npms.io?

2017-10-06 Thread git
janl closed issue #995: why is insecure in the npms.io? URL: https://github.com/apache/couchdb-fauxton/issues/995 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and

[jira] [Closed] (COUCHDB-2484) replication crashes

2017-10-06 Thread Joan Touzet (JIRA)
[ https://issues.apache.org/jira/browse/COUCHDB-2484?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Joan Touzet closed COUCHDB-2484. Resolution: Auto Closed > replication crashes > --- > > Key:

[GitHub] wohali commented on issue #871: httpsd refusing to access any system DBs

2017-10-06 Thread git
wohali commented on issue #871: httpsd refusing to access any system DBs URL: https://github.com/apache/couchdb/issues/871#issuecomment-334808386 Never mind, this was misconfiguration. This is an automated message from the

[GitHub] wohali closed issue #871: httpsd refusing to access any system DBs

2017-10-06 Thread git
wohali closed issue #871: httpsd refusing to access any system DBs URL: https://github.com/apache/couchdb/issues/871 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub

[GitHub] wohali commented on issue #870: why not use pure javascript/nodejs to develope database?

2017-10-06 Thread git
wohali commented on issue #870: why not use pure javascript/nodejs to develope database? URL: https://github.com/apache/couchdb/issues/870#issuecomment-334793259 You're welcome to reimplement CouchDB on your own in a different language. PouchDB can also use new contributors.

[GitHub] tonysun83 commented on issue #863: Fix exists false when field is explicitly defined

2017-10-06 Thread git
tonysun83 commented on issue #863: Fix exists false when field is explicitly defined URL: https://github.com/apache/couchdb/pull/863#issuecomment-334778025 @willholley : I've always been champion of making the results the same across json and text indexes. If $exists: false is a special

[GitHub] tonysun83 commented on issue #866: Fix incorrect index selection when sort specified

2017-10-06 Thread git
tonysun83 commented on issue #866: Fix incorrect index selection when sort specified URL: https://github.com/apache/couchdb/pull/866#issuecomment-334776797 @willholley : I considered appending ```{"$exists":true}``` for backwards compatibility. We've done it in the past when we appended

[GitHub] tonysun83 commented on issue #866: Fix incorrect index selection when sort specified

2017-10-06 Thread git
tonysun83 commented on issue #866: Fix incorrect index selection when sort specified URL: https://github.com/apache/couchdb/pull/866#issuecomment-334776797 @willholley : I considered appending $exists:true for backwards compatibility. We've done it in the past when we appended $gt: null

[GitHub] anlexN opened a new issue #995: why is insecure in the npms.io?

2017-10-06 Thread git
anlexN opened a new issue #995: why is insecure in the npms.io? URL: https://github.com/apache/couchdb-fauxton/issues/995 ![2](https://user-images.githubusercontent.com/8686739/31276724-e84443f4-aacf-11e7-919b-713741fc7ad8.PNG)

[GitHub] anlexN opened a new issue #870: why not use pure javascript/nodejs to develope database?

2017-10-06 Thread git
anlexN opened a new issue #870: why not use pure javascript/nodejs to develope database? URL: https://github.com/apache/couchdb/issues/870 i see pouchdb is successor about database. i hope apache couchdb team could use pure javascript/nodejs to make some effort to it. i found erlang

[GitHub] willholley commented on issue #866: Fix incorrect index selection when sort specified

2017-10-06 Thread git
willholley commented on issue #866: Fix incorrect index selection when sort specified URL: https://github.com/apache/couchdb/pull/866#issuecomment-334706004 @tonysun83 If a `sort` is specified, perhaps it's reasonable to assume that the user expects the field to exist in all documents

[GitHub] willholley commented on issue #993: Display Mango execution statistics, when available

2017-10-06 Thread git
willholley commented on issue #993: Display Mango execution statistics, when available URL: https://github.com/apache/couchdb-fauxton/pull/993#issuecomment-334702872 @garrensmith the tests are failing but I don't think the failures are related to this PR - any idea what might be wrong?

[GitHub] willholley commented on issue #866: Fix incorrect index selection when sort specified

2017-10-06 Thread git
willholley commented on issue #866: Fix incorrect index selection when sort specified URL: https://github.com/apache/couchdb/pull/866#issuecomment-334697125 @tonysun83 this PR should improve the error message in the case where a user specifies an index with `use_index` that is no longer

[GitHub] willholley commented on issue #863: Fix exists false when field is explicitly defined

2017-10-06 Thread git
willholley commented on issue #863: Fix exists false when field is explicitly defined URL: https://github.com/apache/couchdb/pull/863#issuecomment-334692468 @tonysun83 if a user specifies `{"$exists": false}` explicitly, we can never use an index to fulfil that predicate (you're correct