Re: Riak Search queries

2014-11-24 Thread Eric Redmond
Don't use that. It's internal to Riak. Never never use /internal_solr. Use the /solr interface exposed by Riak, and defined in the documentation. Take care, Eric On Nov 24, 2014 9:35 AM, "Jason Ryan" wrote: Hi Eric, I'm using the internal_solr web front end right now, port 8093 On this particu

Re: Riak Search queries

2014-11-24 Thread Jason Ryan
Hi Eric, I don't get multiple siblings on a Riak GET for the key. My buckets currently have allow_mult: false and last_write_wins: true The n_val is the default 3 When I search, an example return is as follows, I can see the _yz_id has a unique number on the end alright though? Thanks for the h

Re: Riak Search queries

2014-11-22 Thread Eric Redmond
You can check if your object has siblings by performing a key get, and see if two values return. If not, then it may be the index. Can you paste the response where you get two values? Thanks, Eric On Nov 13, 2014, at 9:46 AM, Jason Ryan wrote: > Thanks Eric - I don't see the _yz_vtag returne

Re: Riak Search queries

2014-11-13 Thread Jason Ryan
Thanks Eric - I don't see the _yz_vtag returned in the search result set - so not sure how to tell that? [image: photo] *Jason Ryan* VP Engineering Trustev Real Time, Online Identity Verification email: jason.r...@trustev.com skype: jason_j_ryan web: www.trustev.com Trustev Ltd, 2100 Cork Air

Re: Riak Search queries

2014-11-12 Thread Eric Redmond
On Nov 11, 2014, at 3:55 AM, Jason Ryan wrote: > Hi all, > > I have some quick (hopefully!) questions around Riak search. > > 1. I'm getting multiple documents returned in the search results for a query > - which I assume is based on the n_val of my bucket as I tried to change the > search i

Riak Search queries

2014-11-11 Thread Jason Ryan
Hi all, I have some quick (hopefully!) questions around Riak search. 1. I'm getting multiple documents returned in the search results for a query - which I assume is based on the n_val of my bucket as I tried to change the search index to have a n_val of 1 but got an error that it needed to match

Re: Ordering and Offset problem while performing riak search queries against 1.2.1 stable

2012-12-05 Thread Abhinav Singh
it here: > http://vimeo.com/54266574 > > > On Tue, Dec 4, 2012 at 7:58 AM, Abhinav Singh wrote: > Hello Everyone, > > I have been developing an application using riak search. > I have `riak-1.2.1rc2` installed on my local dev box and most of the things > works as

Re: Ordering and Offset problem while performing riak search queries against 1.2.1 stable

2012-12-04 Thread Sean Cribbs
n application using riak search. > I have `riak-1.2.1rc2` installed on my local dev box and most of the > things works as expected on my local dev, > except for offset problem while using `start=N&rows=M` in riak search > queries, as shown below: > > NOTE: This problem persists

Ordering and Offset problem while performing riak search queries against 1.2.1 stable

2012-12-04 Thread Abhinav Singh
Hello Everyone, I have been developing an application using riak search. I have `riak-1.2.1rc2` installed on my local dev box and most of the things works as expected on my local dev, except for offset problem while using `start=N&rows=M` in riak search queries, as shown below: NOTE:

Riak search queries via the java client

2012-08-26 Thread Oved Machlev
Hi, I am trying to perform queries using the OR operator as following: MapReduceResult result = riakClient. mapReduce("some_bucket", "Name:c1 OR c2"). addMapPhase(new NamedJSFunction("Riak.mapValuesJson"), true). execute(); I only get the 1st object in the que