Re: Map Reduce Implementation

2012-08-02 Thread Mathias Leppich
Hi Jan, I think the Definitive Guide [1] gives a good understanding what's behind CouchDB's views, the indexes that are incrementally generated by a MapReduce functions written in JavaScript (or any other language). [1] http://guide.couchdb.org/draft/views.html - mathias On Aug 2, 2012, at 12

_session question: enable/disable behaviour of users and aditional parameters

2012-08-02 Thread Gabriel Mancini
Hi Guys, I Need create a behaviour in authentication when i have something like this: { "_id": "org.couchdb.user:login", "name": "login", "roles": [ “db_codigo”, “distrib” ], "type": "user", "password": "senha em texto", * "enable": false,* * "aditional_parans": { ... }*

Re: Filtered replication permission

2012-08-02 Thread Eduardo Scoz
After more testing, indeed it seems that seems to be working if I create the replication in the server itself. It took me quite some time to figure out what I was doing wrong, but it was my fault afterall. thanks Benoit! On Thu, Aug 2, 2012 at 9:29 AM, Benoit Chesneau wrote: > in source and t

Re: Test failure (make check) in etap/190-json-stream-parse.t

2012-08-02 Thread CGS
It seems like your version JSON may skip \u0005 (but I may be wrong) and here I cannot help anymore because I have no idea how to debug that. Sorry. Maybe someone more knowledgeable will step up and clarify the problem. CGS On Thu, Aug 2, 2012 at 3:30 PM, Erik Timan wrote: > On Wed, Aug 1, 201

Re: Filtered replication permission

2012-08-02 Thread Benoit Chesneau
in source and target pass an http URL with the credentials. It should work. - benoît On Thu, Aug 2, 2012 at 3:47 PM, Eduardo Scoz wrote: > Is it possible for a user that is not part of the admin list to do a > filtered replication? I'm trying to have a "reader" only user to sync a > subset of doc

Filtered replication permission

2012-08-02 Thread Eduardo Scoz
Is it possible for a user that is not part of the admin list to do a filtered replication? I'm trying to have a "reader" only user to sync a subset of docs with his private database. It seems like that the user logged into CouchDB must have access to the design doc for the replication to work, and

Re: Test failure (make check) in etap/190-json-stream-parse.t

2012-08-02 Thread Erik Timan
On Wed, Aug 1, 2012, at 17:38, CGS wrote: > It looks to me you need to work in UTF8 environment (I might be wrong > though). For that, check the output of `echo $LANG'. That will tell you > if > you are working with UTF8 environment. If not, you can set it with > `export > LANG="your_language.utf8"

Map Reduce Implementation

2012-08-02 Thread Jan Fajerski
Hi, I am researching map reduce implemenations for distributed database systems. Is there a paper or documentation on how this is done in CouchDB? Or is the source code the answer? If so would you be so kind to point me to a good start in the source code? Many thanks in advance, Jan