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

2010-12-01 Thread Sven Riedel
Hi, there's a nice nginx config for loadbalancing a riak cluster at http://rigelgroupllc.com/wp/blog/using-nginx-as-a-front-end-for-riak Personally, even with that in place I wouldn't open those ports up to the public without some access control system in front of it :). Unless you're doing pe

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 wrote: > 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. > > -

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 wrote: > Hi Stefan, > > You need to configure Riak to listen on the right interface. You are trying > to hit

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 remotel

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

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) roidr

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 Developer Advocat

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 riak-users@lis

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 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 accessed and the hash of

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.

[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 Developer Advocate

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) an

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