Re: [VOTE] Import Fauxton

2013-02-06 Thread Norman Barker
+1 On Wed, Feb 6, 2013 at 2:55 PM, Michael Wallace wrote: > +1 > > > On Wed, Feb 6, 2013 at 9:54 PM, Russell Branca wrote: > >> +1 >> >> >> On Wed, Feb 6, 2013 at 1:51 PM, Simon Metson wrote: >> >> > +1 >> > >> > >> > On Wednesday, 6 February 2013 at 21:50, Jan Lehnardt wrote: >> > >> > > Hey e

Re: Ann: CouchMaps

2011-07-20 Thread Norman Barker
> On 20 Jul 2011, at 01:53, Norman Barker wrote: > >> I am pleased to announce CouchMaps which is a simple wrapper around >> MapServer (http://mapserver.org/) to enable >> >>   * Existing MapServer map files to be converted to JSON format >>   * MapServer

Ann: CouchMaps

2011-07-19 Thread Norman Barker
I am pleased to announce CouchMaps which is a simple wrapper around MapServer (http://mapserver.org/) to enable * Existing MapServer map files to be converted to JSON format * MapServer map files to be edited in JSON and stored in CouchDB * MapServer to be managed and run in an Erlang OTP

Re: MapServer and CouchDB

2011-07-16 Thread Norman Barker
may provide inspiration for how to integrate. > > Chris > > > On Tue, Jun 28, 2011 at 11:51 AM, Norman Barker > wrote: >> Hi, >> >> I am planning to wrap MapServer as a supervised process within CouchDB >> using Erlang. MapServer is a CGI application, i

MapServer and CouchDB

2011-06-28 Thread Norman Barker
Hi, I am planning to wrap MapServer as a supervised process within CouchDB using Erlang. MapServer is a CGI application, it should be straightforward. The aim will be to store the MapServer map files (just text docs) that can passed in with every CGI call as JSON docs within CouchDB. The hook will

[jira] [Commented] (COUCHDB-1120) Snappy compression (databases, view indexes) + keeping doc bodies as ejson binaries

2011-04-29 Thread Norman Barker (JIRA)
[ https://issues.apache.org/jira/browse/COUCHDB-1120?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13027182#comment-13027182 ] Norman Barker commented on COUCHDB-1120: I was referring to trade off bet

[jira] [Commented] (COUCHDB-1120) Snappy compression (databases, view indexes) + keeping doc bodies as ejson binaries

2011-04-22 Thread Norman Barker (JIRA)
[ https://issues.apache.org/jira/browse/COUCHDB-1120?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13023259#comment-13023259 ] Norman Barker commented on COUCHDB-1120: Checking out and building NIF

[jira] [Created] (COUCHDB-1114) timeout in couch_os_process not using configuration

2011-03-31 Thread Norman Barker (JIRA)
: Database Core Affects Versions: 1.0.2 Environment: rhel5 and windows Reporter: Norman Barker I started testing couchdb when the system was under load from other processes, basically I wanted to check that couchdb would still work (this is a real application, not just testing) and

couchdb under load

2011-03-29 Thread Norman Barker
Hi, I started testing couchdb when the system was under load from other processes, basically I wanted to check that couchdb would still work (this is a real application, not just testing) and couchdb made a few groans that I have listed below in https://svn.apache.org/repos/asf/couchdb/trunk/src

Re: geocouch

2011-03-17 Thread Norman Barker
Benoit, Volker, thanks, I have the multiview upgraded now to work with geocouch on both 1.0.1 and 1.0.2. I will be making some changes to multiview that I will be pushing to github shortly. The multiview doesn't work with couchbase though, must be some changes in their that I am not aware of. th

geocouch

2011-03-17 Thread Norman Barker
Hi, has geocouch moved from public devt? I don't see an update on github, yet I see in the couchbase server geocouch is a plugin that has been upgraded to support 1.0.2 (in particular changes in couch_view_group). With these changes the multiview code (available on github) I have written is broke

Re: os_daemons and query_servers

2011-03-15 Thread Norman Barker
start (which in our case it sometimes does) then we get a bunch of timeout errors, I used gen_server:call with infinity and it works fine. Thanks for the help, Norman On Wed, Jan 26, 2011 at 5:52 PM, Paul Davis wrote: > On Wed, Jan 26, 2011 at 7:03 PM, Norman Barker > wrote: &

Re: os_daemons and query_servers

2011-01-26 Thread Norman Barker
os_daemons with external query_servers worth doing, if I do this and add a patch can I get this into the trunk? thanks, Norman On Wed, Jan 26, 2011 at 1:39 PM, Paul Davis wrote: > On Wed, Jan 26, 2011 at 3:11 PM, Norman Barker > wrote: >> Hi, >> >> is there a way to c

os_daemons and query_servers

2011-01-26 Thread Norman Barker
Hi, is there a way to combine query_servers and os_daemons, currently I have [query_servers] lang = path/to/interpreter args and I would like [os_daemons] lang_daemon = path/to/interpreter args [query_servers] lang = lang_daemon so as to take advantage of the os_daemons code refactor. Is thi

Re: Multiview handler?

2010-09-29 Thread Norman Barker
Hi Jeff, the multiview handler is at http://github.com/normanb/couchdb and it is being actively developed, I have just taken input from Paul Davis and rewritten the view intersection code to use bloom filters, this makes it a lot faster. It is using native erlang code to query the views. feedba

Fwd: scalable bloom filters in couchdb

2010-09-26 Thread Norman Barker
érgio Almeida Date: 2010/9/26 Subject: Re: scalable bloom filters in couchdb To: Norman Barker On 9/26/10 4:59 PM, Norman Barker wrote: > > Paulo, > > I have put your scalable bloom filter into couchdb > > http://github.com/normanb/couchdb > > as a very quick method of int

Re: multiview using bloom filters

2010-09-26 Thread Norman Barker
find useful. It's used in Bitcask. >> >> Cheers, >> >> Bob >> >> >> >> [1] http://github.com/basho/ebloom >> >> >> >> >> On Sep 24, 2010, at 11:21 PM, Norman Barker wrote: >> >>> Paul, >>> >>&

Re: multiview using bloom filters

2010-09-24 Thread Norman Barker
l from the original author saying its > ok. > > I'm a bit caught up with some other code at the moment, I'll give a > more thorough combing over tomorrow. > > Paul > > On Fri, Sep 24, 2010 at 7:54 PM, Norman Barker > wrote: >> Hi, >> >> than

multiview using bloom filters

2010-09-24 Thread Norman Barker
Hi, thanks to Paul's excellent suggestion I have rewritten the multiview to use bloom filters, I had a concern that a bloom filter per view would use too much memory but thanks in the main to excellent implementation of bloom filters in erlang (http://sites.google.com/site/scalablebloomfilters/) t

Re: Replacing the _external API

2010-09-24 Thread Norman Barker
Paul, for us, the process management is critical, we have external process code and due to this process code size and age it is possible that it may crash (this is not that unusual!), so I am +1 on process management and am interested in helping. As for reverse proxy is this going to be inside co

Re: multiview on github

2010-09-21 Thread Norman Barker
gt; people feel safer using them so they get tested more so that they can > eventually go into trunk as built-in features. > plugins would be good, but honestly it isn't hard to change local.ini, With the multiview I would rather see focus on external http_db_handlers such as FTI and

Re: multiview on github

2010-09-20 Thread Norman Barker
27;s perhaps something more general that might be part > of core but I haven't given it a lot of thought yet. > > Cheers, > > Bob > > > > > On Sep 20, 2010, at 7:02 PM, Norman Barker wrote: > >> Bob, >> >> I can see why plugins might work for y

Re: multiview on github

2010-09-20 Thread Norman Barker
#x27;s the kind > of thing programmers love to argue about ad nauseum but no one wants to do it > (myself included :) > > Best, > > Bob > > > > On Sep 19, 2010, at 10:22 AM, Norman Barker wrote: > >> Bob, >> >> it is just checking that a given id

Fwd: Multi-View support : feedback,issues, and question

2010-09-20 Thread Norman Barker
somehow user and dev got cut off this, see below for an example.. Hi, I have taken your example (and I have also uploaded the latest code to git). Create the following documents {   "type": "B",   "created_at": "20100920" } {   "type": "A",   "created_at": "20100920" } {   "type": "B",   "cre

Re: Muti-View support : feedback,issues, and question

2010-09-20 Thread Norman Barker
Hi, thanks for testing this out, this looks like a configuration issue, _multi should be a registered httpd_db_handler in local.ini as follows. [httpd_db_handlers] _multi = {multiview_httpd, handle_request} I will look into this and make sure it gets added. In the test scripts the following cod

Re: multiview on github

2010-09-19 Thread Norman Barker
ription of this, with a use case,  it would > help. > > Cheers, > > Bob > > > > > On Sep 17, 2010, at 11:32 PM, Norman Barker wrote: > >> Chris, James >> >> thanks for bumping this, we are using this internally at 'scale' >>

Re: multiview on github

2010-09-17 Thread Norman Barker
> James > > On Fri, Sep 17, 2010 at 5:55 PM, Chris Anderson wrote: > >> On Mon, Aug 30, 2010 at 10:58 AM, Norman Barker >> wrote: >> > Bob, >> > >> > I can and have been testing the multiview at this scale, it is ok >> > (fast enough),

Re: CouchDB 1.1

2010-09-15 Thread Norman Barker
As far as native fti, then clucene has a few issues but they are surmountable. I have been keeping a close eye on Apache Lucy (KinoSearch) and I think this is a good candidate for CouchDB. As for other options for 1.2, I am available to help get the multiview in to the trunk, lots of users seem in

Re: multiview on github

2010-08-30 Thread Norman Barker
10:49 AM, Robert Newson wrote: > I'm sorry, I've had no time to play with this at scale. > > On Mon, Aug 30, 2010 at 5:35 PM, Norman Barker > wrote: >> Hi, >> >> are there any more comments on this, if not can you describe the >> process (in partic

Re: multiview on github

2010-08-30 Thread Norman Barker
views, are there any suggestions on how to speed up the document id inclusion test as described below? thanks, Norman On Mon, Aug 23, 2010 at 9:22 AM, Norman Barker wrote: > Bob, > > thanks for the feedback and for taking a look at the code. Guidelines > on when to use a super

Re: multiview

2010-08-23 Thread Norman Barker
Ryan, I have cc'd dev list, this is of general interest, comments inline. On Mon, Aug 23, 2010 at 10:41 AM, Ryan Hill wrote: > Hey there - I like your contribution, but have a couple of questions (that I > didn't want to clutter up the dev-list discussion). > > -- Does your logic take into accou

Re: multiview on github

2010-08-23 Thread Norman Barker
to see some of the project founders and > committers weigh in on this and set some direction. > > Best regards, > > Bob > > > > > > On Aug 22, 2010, at 5:45 PM, Norman Barker wrote: > >> I would like to take this multiview code and have it added to t

Re: multiview on github

2010-08-22 Thread Norman Barker
that should be 'couchdb should not be in version control', sorry not used to git. On Sun, Aug 22, 2010 at 9:22 PM, Norman Barker wrote: > Bob, > > I am testing on 1+ documents, I appreciate that we need to > establish when a multi-process as opposed to a tbd (suggestio

Re: multiview on github

2010-08-22 Thread Norman Barker
ved then > this would be a very useful addition to CouchDB and one that is > frequently requested. It might also be a model for multi-machine > views. > > B. > > On Sun, Aug 22, 2010 at 10:45 PM, Norman Barker > wrote: >> I would like to take this multiview code an

Re: multiview on github

2010-08-22 Thread Norman Barker
I would like to take this multiview code and have it added to trunk if possible, what are the next steps? thanks, Norman On Wed, Aug 18, 2010 at 11:44 AM, Norman Barker wrote: > I have made > > http://github.com/normanb/couchdb > > which is a fork of the latest couchdb trunk wit

Re: Multi-View

2010-08-19 Thread Norman Barker
tests and make you informed of the results. > My only remaining question is about view parameters, How can I send > startkey, endkey, startkeydocId for each of my views? > > Thank you Norman, > > On Wed, Aug 18, 2010 at 11:50 PM, Norman Barker > wrote: >> >> Beh

Re: Multi-View

2010-08-18 Thread Norman Barker
test. thanks, Norman On Wed, Aug 18, 2010 at 8:26 AM, Norman Barker wrote: > Hi Behrad, > > I will add test cases to the test harness for multiview and we will > see if we can get this working, the log files help, thanks! Looks like > you are posting as an authenticated user, I hav

Re: multiview on github

2010-08-18 Thread Norman Barker
cases during today. thanks, Norman On Tue, Aug 17, 2010 at 9:23 PM, Norman Barker wrote: > this is possible, I forked geocouch since I use it, but I have already > separated the geocouch dependencies from the trunk. > > I can do this tomorrow, certainly be interested in any feedback

Re: Multi-View

2010-08-18 Thread Norman Barker
;unsupported view" error! > > >  --Behrad > > ________ > From: Norman Barker > To: Behrad Zari > Cc: dev@couchdb.apache.org > Sent: Tuesday, August 17, 2010 18:53:04 > Subject: Re: Multi-View > > Behrad, (please cc dev list, thanks!) > >

Re: multiview on github

2010-08-17 Thread Norman Barker
ris Anderson wrote: >> >> On Aug 16, 2010, at 4:38 PM, Norman Barker wrote: >> >>> Hi, >>> >>> I have made the changes as recommended, adding a test case >>> multiview.js and also adding the userCtx to open the db. >>> >>> I have

Re: Multi-View

2010-08-17 Thread Norman Barker
Behrad, (please cc dev list, thanks!) the code handles that there is a reduce function and should work, this seems an error with streaming response, particularly as you are only calling one view. One view request is handled differently and just results in that view being streamed to the client. C

Re: multiview on github

2010-08-16 Thread Norman Barker
inclusion rather than iterating? Many thanks, Norman On Fri, Aug 6, 2010 at 10:16 AM, Norman Barker wrote: > Chris, > > I will make those changes, it might be a couple of days as I am on travel. > > I will clone geocouch as a starting point and add javascript tests as > you sugge

Re: multiview on github

2010-08-06 Thread Norman Barker
uchdb IRC > channel on Freenode is a good place to solicit feedback. There are a lot of > people on there doing Geo things that would benefit from this. (They really > wanna be able to intersect a Geo query with a Map Reduce query, etc.) > > Chris > >> Cheers >> Ja

Re: multiview on github

2010-08-05 Thread Norman Barker
Hi, is there any interest in the multiview, I have fixed (3) below, but am still interested in approaches for (1) and (2). thanks, Norman On Fri, Jul 30, 2010 at 3:39 PM, Norman Barker wrote: > Hi, > > a very initial version of the multiview is at > http://github.com/normanb/couch

Re: concurrent requests

2010-08-02 Thread Norman Barker
it means that you tried to call erlang:byte_size/1 with an > argument that wasn't a binary.  In this case it looks like you supplied a > message generated by a gen_server:call().  Best, > > Adam > > On Jul 30, 2010, at 4:50 PM, Norman Barker wrote: > >> Hi, >&

multiview on github

2010-07-30 Thread Norman Barker
Hi, a very initial version of the multiview is at http://github.com/normanb/couchdb-multiview for discussion. The views are intersected by using a ring of processes where each node in the ring represents a view as follows; % send an id from the start list to the next node in the ring, if the id

concurrent requests

2010-07-30 Thread Norman Barker
Hi, I have set up a JMeter test script against couchdb and in particular the multiview I have set up, when 1 or more requests are concurrent I get [error] [<0.2406.0>] Uncaught error in HTTP request: {exit, {{badarg, [{erlang,byt

Re: export control notice - multiview

2010-07-29 Thread Norman Barker
wrote: > > On 29 Jul 2010, at 04:55, Norman Barker wrote: > >> I work for ITT VIS and we would really like to give this multiview for >> consideration by the community (as well as other patches)*. I have >> passed this to our legal dept and they would like us to follow &

Re: export control notice - multiview

2010-07-28 Thread Norman Barker
needs confirmation by the PMC of CouchDB and a documented way of forking on github. Norman On Wed, Jul 28, 2010 at 8:23 PM, J Chris Anderson wrote: > > On Jul 28, 2010, at 2:18 PM, Norman Barker wrote: > >> Hi Volker, >> >> thanks for letting me know, in that case can we have

Re: export control notice - multiview

2010-07-28 Thread Norman Barker
done anything :) It's just the default CouchDB README file. > > Cheers, >  Volker > > On 07/28/2010 09:57 PM, Norman Barker wrote: >> >> Hi, >> >> I am looking to put some couchdb erlang code for the multiview >> integration with couchdb-clucene on m

export control notice - multiview

2010-07-28 Thread Norman Barker
Hi, I am looking to put some couchdb erlang code for the multiview integration with couchdb-clucene on my github account for review. Having consulted with our export control dept here, it seems I should follow http://www.apache.org/dev/crypto.html and I see that Volker has put a note at the bott