Re: Transfer-encoding: chunked

2010-10-15 Thread Leonid Riaboshtan
There's also another bug I filed: https://issues.basho.com/show_bug.cgi?id=807 Not sure If I chose right place for it. Transfer-Encoding gets stinky :) On Fri, Oct 15, 2010 at 10:30 AM, Dan Reverri wrote: > Hi Leonid, > > I was able to reproduce thi

Re: Designing Your Buckets

2010-10-15 Thread Jeremiah Peschka
Based on my experience, you're on the right track. In addition to your main 'entity' buckets, you'll want to create index buckets that you use to speed lookups and create links back to the entity buckets. e.g. If you have a People bucket that is a nested record for a person with a mailing address

Re: Designing Your Buckets

2010-10-15 Thread Alexander Sicular
State > zip > person with links in between seems very normalized to me. Ya, you can do it, but I wouldn't. You in flat space now. Denormalize ftw. Sean Cribbs had a blog post on m/r'ing over some people and I have a post on using m/r to sort by date. Google will find em. -Alexander On 2010-10-15

Re: Designing Your Buckets

2010-10-15 Thread Jeremiah Peschka
And here are the posts in question, which I clearly need to re-read (thanks for the gentle reminder, Alexander http://blog.basho.com/2010/03/19/schema-design-in-riak---introduction/ http://blog.basho.com/2010/03/25/schema-design-in-riak---relationships/ http://blog.basho.com/2010/07/09/webinar-rec

Re: Designing Your Buckets

2010-10-15 Thread Alexander Sicular
Another thing to keep in mind is that an individual document has higher overhead than a row in a table. If you think about all the metadata that accompanies a document in riak you will notice that the ratio of overhead to value is higher the smaller your value is, like say two character sta

Riak Recap for Oct 13 - 14

2010-10-15 Thread Mark Phillips
Afternoon, Evening, Morning to all, This Recap comes to you live from Strangeloop happening in St. Louis. This conference is exceptional and I would highly-recommend you attend next year if it's possibe. Now, onto Riak... We have another great Recap for today: Gists, blog posts, community code an

Re: Riak Recap for Oct 13 - 14

2010-10-15 Thread Mark Phillips
Oops. Forgot one blog post... @mhausenblas wrote a great, short post on using links in Riak to store an RDF graph. Post here ---> http://webofdata.wordpress.com/2010/10/14/riak-for-linked-data/ Mark ___ riak-users mailing list riak-users@lists.basho.c

Re: Designing Your Buckets

2010-10-15 Thread Cagdas Tulek
Thanks for the replies, I'll read the blogs. On Fri, Oct 15, 2010 at 6:31 AM, Alexander Sicular wrote: > Another thing to keep in mind is that an individual document has higher > overhead than a row in a table. If you think about all the metadata that > accompanies a document in riak you will not