Systems Security: a Primer

2011-10-02 Thread Aphyr
As promised, a brief overview of designing secure applications, with a quick rundown of how you might expose Riak to the world. http://aphyr.com/journals/show/systems-security-a-primer --Kyle Kingsbury ___ riak-users mailing list riak-users@lists.bas

RE: What is the best way to do "AND / OR" queries across data items across one or more buckets Riak? Seconday indexes, Solr, mutiple map phases, etc? Is this advice different prior to 1.0?

2011-10-02 Thread Roberto Calero
How about performing a search across different buckets? Is it possible? if so... would it be link-walking? Map-Reduce? From: kevburn...@gmail.com Date: Sun, 2 Oct 2011 03:34:31 -0700 Subject: Re: What is the best way to do "AND / OR" queries across data items across one or more buckets Riak?

Re: Custom Extractor Syntax

2011-10-02 Thread Ryan Zezeski
Greg, Yes, use the new property going forward. The old property will still work but at some point will be phased out. When that happens it will be documented in the release notes. You currently can't remove a bucket property. In the case where rs_extractfun is still set in a future version it

Re: riak-admin join not working when using riak_core rebar template

2011-10-02 Thread Ryan Zezeski
Hussam, Thanks for the report. I introduced a bug recently when I updated the admin script template [1]. Pull the latest from my master of rebar_riak_core, update your ~/.rebar/templates, and then try again. -Ryan [1]: https://github.com/rzezeski/rebar_riak_core/commit/2885299c41e2117c92b56806

Re: Rolling Upgrade (was Re: Riak 1.0)

2011-10-02 Thread 54chen
Thanks.I will have a try. 2011/10/2 Jeremiah Peschka > Once again, I was wrong. Such is life :) > > Jeremiah Peschka > Founder, Brent Ozar PLF > On Oct 1, 2011 1:24 PM, "Kev Burns" wrote: > > I just did a riak-admin backup on a 0.14.2 dev cluster using the bitcask > > backend, > > then did a ri

Re: Riak 1.0

2011-10-02 Thread 54chen
Thanks for your reply. It is really helpful. 在 2011年10月1日 下午11:15,Ian Plosker 写道: > There are instructions on the wiki: > http://wiki.basho.com/Secondary-Indexes.html#Migrating-an-Existing-Cluster-(Method-One) > > Basically, you will have each node leave the cluster, switch the backend, > and the

Re: Hints for using links

2011-10-02 Thread Anton Podviaznikov
Yes, I also was thinking about using hooks. Maybe I'll try to do what you suggested:) Just need to understand now what is the best solution. -- Anton On 2 October 2011 12:09, Kev Burns wrote: > If you wanted to get freaky, you could write a post-commit hook (in erlang) > that automatically per

Re: What is the best way to do "AND / OR" queries across data items across one or more buckets Riak? Seconday indexes, Solr, mutiple map phases, etc? Is this advice different prior to 1.0?

2011-10-02 Thread Kev Burns
What up Harshal, Since at least 0.13.x, the solr interface has supported both AND and OR queries just fine, even in combination. {a: "foo"} {a: "bar"} {a: ["foo", "bar"]} {a: "bar baz"} curl "http://localhost:8098/solr/bucket_name/select?wt=json&q=a:foo+OR+a:bar " (4 results) curl " http://loca

Re: Hints for using links

2011-10-02 Thread Kev Burns
If you wanted to get freaky, you could write a post-commit hook (in erlang) that automatically persists a copy of a k/v to a history bucket whenever a new value is stored. Then of course you could open source it to provide a canonical solution for all :) - Kev On Oct 1, 2011 4:45 AM, "Anton Podvia

Re: Hints for using links

2011-10-02 Thread Anton Podviaznikov
Thank you for the answers! They are really helpful! Best regards, Anton Podviaznikov On 1 October 2011 13:56, Jeremiah Peschka wrote: > You can search the archives with a very gmail style interface over at > http://markmail.org. Use the search filter list:com.basho.lists.riak-users > > Object ve

Re: What is the best way to do "AND / OR" queries across data items across one or more buckets Riak? Seconday indexes, Solr, mutiple map phases, etc? Is this advice different prior to 1.0?

2011-10-02 Thread Fyodor Yarochkin
On Thu, Sep 29, 2011 at 2:41 AM, Ryan Zezeski wrote: > Harshal, > If you had an object like `{"a": "test test2"}` then `test AND test2` would > match it. > Out of curiosity, are you using search as a secondary index mechanism?  If > so you should know that Riak has built-in secondary index support