Re: Numbers in JavaScript, Lucene, and FoundationDB

2019-05-16 Thread Paul Davis
Its late so just a few quick notes here: Jiffy decodes numbers based on their encoding. I.e., any number that includes a decimal point or exponent is decoded as a double while any integer is decoded as an integer or bignum depending on size. While encoding jiffy will also encode 1.0 as "1.0" and

Numbers in JavaScript, Lucene, and FoundationDB

2019-05-16 Thread Adam Kocoloski
Hi all, CouchDB has always had a somewhat complicated relationship with numbers. I’d like to dig into that a little bit and see if any changes are warranted, or if we can at least be really clear about exactly how they’re handled going forward. Most of you are likely aware that JS represents

Re: Design doc index switching

2019-05-16 Thread ermouth
Looks great, but how that shadow ddoc would replicate? What happens when tgt node received shadow ddoc, rebuilt shadow index, and then updates original ddoc? ermouth пт, 17 мая 2019 г. в 00:03, Robert Samuel Newson : > I suggest an alternative; the new design document could include the _id of

Re: Design doc index switching

2019-05-16 Thread Robert Samuel Newson
I suggest an alternative; the new design document could include the _id of design document it’s replacing (“_replaces”:”_design/foo”). On completion of the view build of the new design document, CouchDB itself updates the named _id to the same content as the new design document (strictly, only

Re: Design doc index switching

2019-05-16 Thread Jan Lehnardt
+1 on solving this for all users, and same caveats as Stefan raises :) > On 16. May 2019, at 09:38, Stefan du Fresne wrote: > > Hey Garren, > > Having this a native part of CouchDB seems like a really cool idea: we have > automated the manual dance you're talking about with our deployment

Re: Design doc index switching

2019-05-16 Thread Joan Touzet
Hi Garren, +1. I actually went hunting in GitHub for an issue on this, and can't find one. It probably goes back to JIRA, and I don't have the energy to dig through that now. The closest issue that captures this is the same thing - but for *databases* - and is on our official roadmap from

Re: Design doc index switching

2019-05-16 Thread Stefan du Fresne
Hey Garren, Having this a native part of CouchDB seems like a really cool idea: we have automated the manual dance you're talking about with our deployment tooling, but it would be really nice not to have to! I'm not clear how it would work though, at least in terms of coherent deployments.

Design doc index switching

2019-05-16 Thread Garren Smith
Hi Everyone, A common pattern we see for updating large indexes that can take a few days to build, is create a new design docs with the new updated views. Then once the new design doc is built, a user changes the new design doc’s id to the old design doc. That way the CouchDB url for the views