Re: Riak python client and Solr

2015-12-14 Thread Steve Garon
The python client does not support any advance SOLR features like deep search, facets, grouping, etc. Just use pythons 'requests' lib to query the HTTP interface of Riak for all your search related queries. Steve On 14 December 2015 at 08:34, Joe Olson wrote: > > I am trying to use the Solr (*

Re: RIAK Python Client

2014-10-09 Thread Tumaini
Hello Bryce, thanks for the warm welcome and quick response. The output is as follows (remember though that I have already ran this before so it pretty much does nothing, unless you want me to uninstall first then run the command?): tumaini@ubuntu2:~$ sudo easy_install riak Searching for riak Best

Re: RIAK Python Client

2014-10-09 Thread Bryce Verdier
Hi Tumaini, Welcome to the list. Can you share the output from running "easy_install riak"? Warm regards, Bryce On 10/09/2014 07:50 AM, Tumaini wrote: > Hello All, > Am new to Riak and relatively new to Python but was interested in using the > Python Client rather than using curl on the command

RE: Riak python client and Solr

2014-08-19 Thread Sapre, Meghna A
tried some variations of the same, did not seem to work Any suggestions? Thanks, Meghna From: Eric Redmond [mailto:eredm...@basho.com] Sent: Tuesday, August 19, 2014 1:12 PM To: Sapre, Meghna A Cc: riak-users Subject: Re: Riak python client and Solr You don't pass in a query as a url encoded

Re: Riak python client and Solr

2014-08-19 Thread Alex De la rosa
Ok, now I saw Sean's response... it worked perfectly that way :) r = client.fulltext_search('ix_images', 'site_s:aaa AND keywords_s:bbb', sort='clickrate_f asc') Thanks! Alex On Tue, Aug 19, 2014 at 10:17 PM, Alex De la rosa wrote: > Seems I was wrong... the API doesn't complain but it doesn'

Re: Riak python client and Solr

2014-08-19 Thread Alex De la rosa
Seems I was wrong... the API doesn't complain but it doesn't perform the sorting as I thought it should do... any clues on how to do it? this: r = client.fulltext_search('ix_images', 'site_s:xxx AND keywords_s:yyy') plus sorting by "clickrate_f desc" Thanks! Alex On Tue, Aug 19, 2014 at 10:13

Re: Riak python client and Solr

2014-08-19 Thread Alex De la rosa
Hi there, I was having the same problems too... this works fine: r = client.fulltext_search('ix_images', 'site_s:xxx AND keywords_s:yyy') but this gives the same error as yours: r = client.fulltext_search('ix_images', 'site_s:xxx AND keywords_s:yyy&sort="clickrate_f desc"') Then I saw this way

Re: Riak python client and Solr

2014-08-19 Thread Eric Redmond
You don't pass in a query as a url encoded string, but rather a set of parameters. So you'd call something like: search_results = riak_client.fulltext_search(self.Result_Index, 'build.type:CI', group='on', 'group.field'='build.version') Eric On Aug 19, 2014, at 1:08 PM, Sapre, Meghna A wrote

Re: Riak Python Client release candidate published

2014-07-30 Thread Alex De la rosa
Awesome!! Can't wait to get my hands on it and Riak 2.0rc1! :) Thanks! Alex On Wednesday, July 30, 2014, Sean Cribbs wrote: > Hey Riak Users, > > We've just pushed a release candidate of the official Python client to > PyPi [1]. This package includes support for Riak 2.0.0 RC1 features, > inclu

Re: riak-python-client http timeout?

2013-01-31 Thread Mark Phillips
Hi Michael, Sorry for the month-late response here. I spoke with Sean, Evan, and the team a bit about this. There's not a straight-forward way to do this right now with python client. The best approach would probably be something server-side that's interface-specific, but that's not in place yet.

Re: Riak Python Client release 1.5.0

2012-08-29 Thread Gordon Tillman
Great news! Thanks Sean!! --g On Aug 29, 2012, at 13:58 , Sean Cribbs wrote: > Hey riak-users, > > We've just officially released the official Riak Python Client, > version 1.5.0, to pypi.python.org. The primary updates in this release > are related to Riak 1.2 compatibility, so if you're usin

Re: Riak Python client connection pooling using gevent

2012-08-09 Thread Sean Cribbs
Parnell, Thanks for sending the PR, I've left you some comments. On Thu, Aug 9, 2012 at 4:52 AM, Parnell Springmeyer wrote: > I've been needing the Riak Python client to handle pooled connections > (including pooled connections to multiple nodes) and decided to re-work > (just barely) the curren