Re: to escape or not to escape?

2010-12-01 Thread francisco treacy
I recently incorporated a pull request into riak-js that involved URI escaping for the HTTP client. Shallow tests show that everything works fine, but once you start messing with links... you get bitten by this bug (#617). And I don't want to resort to the hack of double-escaping links. I think

Re: More on Map/Reduce, Riak, and Grails Gorm, spring-data support

2010-12-01 Thread Kevin Smith
Responses inline. On Nov 30, 2010, at 4:18 PM, Jon Brisbin wrote: I'm still struggling with some unexpected results in running tests for the Java support I'm writing for Grails and Spring Data. As an example, I ran the full Gorm TCK test suite against my local Riak server (0.13.0) and

[ANN] Schema Design for Riak Webinar (revisited)

2010-12-01 Thread Sean Cribbs
By popular demand, we're revisiting the Schema Design for Riak webinar next Tuesday, December 7. Registration and more details are on the blog: http://blog.basho.com/2010/12/01/free-webinar---schema-design-for-riak---dec...@-2pm-eastern/ Hope to see you there! Sean Cribbs s...@basho.com

Re: More on Map/Reduce, Riak, and Grails Gorm, spring-data support

2010-12-01 Thread Jon Brisbin
On Dec 1, 2010, at 10:08 AM, Kevin Smith wrote: There is a cache between the MapReduce machinery and the Javascript VMs to reduce demand on the VMs. It is a two-level cache based on the bucket/key pair being accessed and the hash of the Javascript function name or source being invoked.

Re: More on Map/Reduce, Riak, and Grails Gorm, spring-data support

2010-12-01 Thread Alexander Sicular
On Wed, Dec 1, 2010 at 12:32, Jon Brisbin jon.bris...@npcinternational.com wrote: On Dec 1, 2010, at 10:08 AM, Kevin Smith wrote: There is a cache between the MapReduce machinery and the Javascript VMs to reduce demand on the VMs. It is a two-level cache based on the bucket/key pair being

Maximum # of Buckets ?

2010-12-01 Thread Jonah Crawford
Mongo's current distribution has a maximum number of namespaces - I think it's around 20,000. Does riak have a problem with say a quarter-million bucket namespaces ? Would make my queries much simpler. Jonah ___ riak-users mailing list

Re: Maximum # of Buckets ?

2010-12-01 Thread Sean Cribbs
Jonah, If you aren't changing the bucket properties, there's theoretically no limit -- they are essentially only namespaces for your keys. If you need special properties for each bucket, there's still no hard limit but some operations will be adversely affected. Sean Cribbs s...@basho.com

Riak Recap for Nov. 29 - 30

2010-12-01 Thread Mark Phillips
Evening, Morning, Afternoon to all, For today's Recap: A few conversations from #riak, Basho is hiring, a new Riak Webinar, and a Riak preso happening in Crakow. Enjoy, Mark Community Manager Basho Technologies wiki.basho.com twitter.com/pharkmillups Riak Recap for Nov. 29 - 30 1)

Installed Riak via ssh. Now can/should I test *remotely* from a browser?

2010-12-01 Thread Stefan Scott Alexander
Hi - SUMMARY: This may be a silly question but... after installing Riak via ssh, can I (or should I) test *remotely* it from a browser? I'm very excited about being able to learn how to use MapReduce with Riak. I installed Riak on my remote VPS server (running Debian 5.0 Lenny) - via Putty SSH

Re: Installed Riak via ssh. Now can/should I test *remotely* from a browser?

2010-12-01 Thread Andrew Stone
Hi Stefan, You need to configure Riak to listen on the right interface. You are trying to hit it from 127.0.0.1 which is only available from the local machine. If you set web_ip to 0.0.0.0 in app.config for riak_core it will listen on all interfaces. Then you can try to hit it with a curl

Re: Installed Riak via ssh. Now can/should I test *remotely* from a browser?

2010-12-01 Thread Alexander Sicular
Testing aside, I would not bind a production riak to an external interface. The recommended method is to access riak via an intermediary like nginx. -alexander On 2010-12-01, Andrew Stone andrew.j.ston...@gmail.com wrote: Hi Stefan, You need to configure Riak to listen on the right interface.

Re: Installed Riak via ssh. Now can/should I test *remotely* from a browser?

2010-12-01 Thread Andrew Stone
I second that actually and should have put it in my initial response. -Andrew On Wed, Dec 1, 2010 at 10:33 PM, Alexander Sicular sicul...@gmail.comwrote: Testing aside, I would not bind a production riak to an external interface. The recommended method is to access riak via an intermediary