Re: Riak 2.1.3 - Multiple indexes created by Solr for the same Riak object

2016-09-14 Thread Weixi Yen
han one copy of an object. Got it, that's what's happening. > You can perform a GET/PUT cycle through Riak KV on an object. Perfect, will do this to fix when I notice the dupes coming in, thanks! On Tue, Sep 13, 2016 at 9:21 AM, Weixi Yen wrote: > > So yes, it is possible to f

Riak 2.1.3 - Multiple indexes created by Solr for the same Riak object

2016-09-12 Thread Weixi Yen
Sort of a unique case, my app was under heavy stress and one of my riak nodes got backed up (other 4 nodes were fine). I think this caused Riak.update to create an extra index in Solr for the same object when users began running .update on that object. I have basically 2 questions: 1) Is what I'

Re: List Keys for a bucket not returning anything

2016-02-01 Thread Weixi Yen
Thanks that was it! On Mon, Feb 1, 2016 at 11:44 AM, Vitaly E <13vitam...@gmail.com> wrote: > I think it should be > > curl -i > http://localhost:8098/types/comment/buckets/comment/keys?keys=stream > > Regards, > Vitaly > I'm trying *delete* and *rebuild* yokozuna search indexes. > > One idea was

List Keys for a bucket not returning anything

2016-02-01 Thread Weixi Yen
I'm trying *delete* and *rebuild* yokozuna search indexes. One idea was to just list all the buckets and all the keys, and trigger an update to rebuild the index. However, the following commands don't seem return any buckets or keys. *curl -i http://localhost:8098/buckets/comment/keys?keys=stre

Re: Riak Search 2.0 - CRDT Sets within Maps not returned in search results

2016-01-27 Thread Weixi Yen
tar.gz It seems that 2.1.3 has stored=true though. On Wed, Jan 27, 2016 at 11:47 AM, Weixi Yen wrote: > Awesome, that's what I was looking for, thank you! > > On Wed, Jan 27, 2016 at 11:40 AM, Zeeshan Lakhani > wrote: > >> Weixi, >> >> Are you using 2.0.

Re: Riak Search 2.0 - CRDT Sets within Maps not returned in search results

2016-01-27 Thread Weixi Yen
d > reindex, you’ll see the results. > > Thanks. > > Zeeshan Lakhani > programmer | > software engineer at @basho | > org. member/founder of @papers_we_love | paperswelove.org > twitter => @zeeshanlakhani > > On Jan 27, 2016, at 2:34 PM, Weixi Yen wrote: >

Riak Search 2.0 - CRDT Sets within Maps not returned in search results

2016-01-27 Thread Weixi Yen
I have a CRDT Map bucket that I'm running searches on in Yokozuna (using _yz_default index for now) However, the search results do not return any fields of the map that are CRDT sets. Is this intended behavior? Thanks in advance! ___ riak-users mailing

Re: Is using the same search index on all CRDT buckets a good idea?

2015-11-23 Thread Weixi Yen
e you're learning Solr. > > 2) Use custom schemas instead, and only index those fields that you'll be > querying. So, unless all your CRDTs have common fields, this means creating > separate custom indexes for your buckets. > > > On Fri, Nov 20, 2015 at 10:36 PM, Weixi

Is using the same search index on all CRDT buckets a good idea?

2015-11-20 Thread Weixi Yen
Hello, I have a question about Riak 2.0+ Search best practices. A) I'm wondering if using the same search index on all my CRDT bucket types and then filtering by bucket name is a good idea. B) Or should I be creating different indexes for each bucket if my primary goal is to search by bucket. A