Re: Error 500 - badmatch,{error,system_limit}

2010-03-03 Thread Simon Eisenmann
Am Dienstag, den 02.03.2010, 11:33 -0800 schrieb Damien Katz: Simon, if possible, can you upload the database file somewhere? I want to investigate the duplicate document issue. You should email me privately if you have confidential info in the database. -Damien Sure this is possible. I

Attachment Post-Processing?

2010-03-03 Thread Justin Stanczak
Is attachment post processing possible with CouchDB? Can I resize images with ImageMagick for example? or encode a video with FFmpeg after upload? or maybe even running a cron job?

Re: Attachment Post-Processing?

2010-03-03 Thread Noah Slater
Not from *within* CouchDB, but you could iterate over them and do what you wish. On 3 Mar 2010, at 18:32, Justin Stanczak wrote: Is attachment post processing possible with CouchDB? Can I resize images with ImageMagick for example? or encode a video with FFmpeg after upload? or maybe even

Re: Attachment Post-Processing?

2010-03-03 Thread Justin Stanczak
Ok. Thanks. On Wed, Mar 3, 2010 at 1:37 PM, Noah Slater nsla...@tumbolia.org wrote: Not from *within* CouchDB, but you could iterate over them and do what you wish. On 3 Mar 2010, at 18:32, Justin Stanczak wrote: Is attachment post processing possible with CouchDB? Can I resize images

Re: Attachment Post-Processing?

2010-03-03 Thread Justin Stanczak
I just got on the couch last night so I'm still learning, can't you tell. On Wed, Mar 3, 2010 at 1:37 PM, Noah Slater nsla...@tumbolia.org wrote: Not from *within* CouchDB, but you could iterate over them and do what you wish. On 3 Mar 2010, at 18:32, Justin Stanczak wrote: Is attachment

Re: Attachment Post-Processing?

2010-03-03 Thread Justin Stanczak
Can do. Thanks. On Wed, Mar 3, 2010 at 2:00 PM, Paul Davis paul.joseph.da...@gmail.comwrote: Also check out the continuous _changes feed that will be in the 0.11 release for doing this sort of thing. On Wed, Mar 3, 2010 at 1:57 PM, Justin Stanczak rizen...@gmail.com wrote: Ok. Thanks.

Securing a database on version 0.11.0b915670

2010-03-03 Thread Phat Loc
Hi All, Can anyone refer me to docs on how to secure a CouchDb installation? Is there a way to block based on IP? I might just put a proxy between user and couchdb an put security on the proxy. Thanks

Re: Securing a database on version 0.11.0b915670

2010-03-03 Thread Noah Slater
On 3 Mar 2010, at 21:14, Phat Loc wrote: Can anyone refer me to docs on how to secure a CouchDb installation? Is there a way to block based on IP? I might just put a proxy between user and couchdb an put security on the proxy. An HTTP proxy is your best bet.

couchdb for genome data

2010-03-03 Thread Tom Sante
Hi The data is now stored in a mysql table with about a billion (1000 million) rows. These rows are the data of a genetic test (arrayCGH) and build up like this: Every experiment (a few thousand of them total) contains measurements of about 18 genetic probes. This raw data will be

Security on database wiped after server reboot

2010-03-03 Thread Phat Loc
Hi All, I am running 0.11.0b915670 on windows. I can set the security in Futon on a database but the settings disappear after a reboot. Is there a work around? Thanks

couchdb lucene error

2010-03-03 Thread Michael McCaffrey
Something's happened with my couchdb lucene implementation and I can't get couch to start unless I comment out the indexer in the ini file. I'm getting java heap errors. I've tried cleaning out my indices folder but to no avail. Don't know what happened, it was working fine, I made a change to

Re: couchdb lucene error

2010-03-03 Thread km
please check if 1) ur dir to store indexes (indexes dir ) is properly set in the local.ini config file 2) ownership of that indexes dir set to couchdb user recursively eg: chown -R couchdb:couchdb indexesdir 3) permissions of that indexes dir set appropriately eg: chmod -R 0770 indexesdir

Re: couchdb lucene error

2010-03-03 Thread Robert Newson
you may need to add -Xmx1g to your java line to make this work; B. On Wed, Mar 3, 2010 at 9:36 PM, km srikrishnamo...@gmail.com wrote: please check if 1) ur dir to store indexes (indexes dir ) is properly set in the local.ini config file 2) ownership of that indexes dir set to couchdb user

Re: couchdb for genome data

2010-03-03 Thread km
Hi, You could have an additional key in the document identifying it as probe - eg type (key) with value probe like this: { type:probe. probe_id : 1234567890, experiment_id : 1234567890, raw_value : 0.43524, analysis: { cbs : 0.436, CBS+GLAD : 0.4356 } } so