Riak Python Client 2.5.5 released

2016-07-18 Thread Luke Bakken
up. https://pypi.python.org/pypi/riak/2.5.5 https://github.com/basho/riak-python-client/blob/master/RELNOTES.md API docs: http://basho.github.io/riak-python-client/ https://github.com/basho/riak-python-client/releases/tag/2.5.5 Milestone in GH: https://github.com/basho/riak-python-clien

Riak Python Client 2.5.4 released

2016-07-11 Thread Luke Bakken
-client/blob/master/RELNOTES.md API docs: http://basho.github.io/riak-python-client/ https://github.com/basho/riak-python-client/releases/tag/2.5.4 Milestone in GH: https://github.com/basho/riak-python-client/issues?q=milestone%3Ariak-python-client-2.5.4 -- Luke Bakken Engineer lbak...@basho.com

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 (*

Riak python client and Solr

2015-12-14 Thread Joe Olson
I am trying to use the Solr ( Yokozuna ) 'group' options with fulltext_search. I get expected results when I use the http interface, but not with python-riak-client fulltext pbc search. Here's what I'm trying to do: # This works fine curl "http://:8098/search/query/solrdefault?wt=json&q=id_s:

Riak Python Client 2.2.0 Released

2014-12-18 Thread Brett Hazen
https://pypi.python.org/pypi/riak/2.2.0 [2] https://pypi.python.org/pypi/pyOpenSSL/0.14 [3] http://riak-python-client.readthedocs.org/en/2.2.0 [4] https://github.com/basho/riak-python-client/blob/2.2.0-stable/RELEASE_NOTES.md [5] https://github.com/basho/riak-python-client/issues   Brett Hazen Sof

Re: RIAK Python Client

2014-10-09 Thread Tumaini
appreciated, Tumaini -- View this message in context: http://riak-users.197444.n3.nabble.com/RIAK-Python-Client-tp4031906p4031911.html Sent from the Riak Users mailing list archive at Nabble.com. ___ riak-users mailing list riak-users@lists.basho.com http

Re: RIAK Python Client

2014-10-09 Thread Bryce Verdier
thon, can anyone give > me some pointers? > > Thanks in advance? > > Tumaini > > > > -- > View this message in context: > http://riak-users.197444.n3.nabble.com/RIAK-Python-Client-tp4031906.html > Sent from the Riak Users mailing list archive at Nabble.com. > >

RIAK Python Client

2014-10-09 Thread Tumaini
t;. Am not sure how to get the riak module visible to my python, can anyone give me some pointers? Thanks in advance? Tumaini -- View this message in context: http://riak-users.197444.n3.nabble.com/RIAK-Python-Client-tp4031906.html Sent from the Riak User

Riak Python Client 2.1 (for Riak 2.0) Released

2014-09-03 Thread Sean Cribbs
ssues previously mentioned have been resolved or pushed to a future release [3] [4]. As always, please report any issues you find on the Github issue tracker [5]. Cheers! [1] https://pypi.python.org/pypi/riak/2.1.0 [2] http://basho.github.io/riak-python-client [3] https://github.com/basho/riak-p

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

Riak python client and Solr

2014-08-19 Thread Sapre, Meghna A
Hi, I am trying to use the group and stats options with riak search. I get expected results with http urls, but not with python-riak-client fulltext pbc search. Here’s what I’m trying to do: q = 'build.type:CI&group=on&group.field=build.version' try: search_results = riak_

Re: Riak Python Client release candidate published

2014-07-30 Thread Alex De la rosa
s/ > http://docs.basho.com/riak/2.0.0/dev/data-modeling/data-types/ > http://docs.basho.com/riak/2.0.0/ops/running/authz/ > http://docs.basho.com/riak/2.0.0/dev/advanced/strong-consistency/ > [4] https://pypi.python.org/pypi/pyOpenSSL/0.14 > [5] https://github.com/basho/ria

Riak Python Client release candidate published

2014-07-30 Thread Sean Cribbs
ttp://docs.basho.com/riak/2.0.0/ops/running/authz/ http://docs.basho.com/riak/2.0.0/dev/advanced/strong-consistency/ [4] https://pypi.python.org/pypi/pyOpenSSL/0.14 [5] https://github.com/basho/riak-python-client/pull/328 [6] https://github.com/basho/riak-python-client/pull/341 [7] https://g

Riak Python Client: How to properly use/re-use the client object?

2014-05-07 Thread Finkle Mcgraw
Hi fellow Riak users, Background: I have a website project in which I'm using a set-up of a few stateless webservers which talk to the riak cluster via HAProxy over HTTP. Each webserver has a HAProxy instance locally which knows about the nodes in the riak cluster, so the application itself only

Re: [ANN] Riak Python Client 2.0.3

2014-03-06 Thread Sean Cribbs
I forgot to mention that the documentation is also updated for 2.0.3: http://basho.github.io/riak-python-client On Thu, Mar 6, 2014 at 9:39 AM, Sean Cribbs wrote: > Hi Riak users, > > The official Riak Python Client version 2.0.3 is now available on PyPI. > This release incl

[ANN] Riak Python Client 2.0.3

2014-03-06 Thread Sean Cribbs
Hi Riak users, The official Riak Python Client version 2.0.3 is now available on PyPI. This release includes several important bugfixes and support for the 1.4.4+ feature 2i term regexp feature. Complete release notes are available: https://github.com/basho/riak-python-client/blob/2.0-stable

Re: Corrupted data using Riak Python Client on Win7 64 bit

2013-11-09 Thread finkle mcgraw
ed somewhere in the > download flow on the windows machine. > > Ergo: Data appears to be corrupted both when going upstream and when going > downstream somewhere inside the stack used by the riak python client on > windows 7 64 bit. > > One more observation: I've done some

Re: Corrupted data using Riak Python Client on Win7 64 bit

2013-11-09 Thread Christian Dahlqvist
n the download flow on the windows > machine. > > Ergo: Data appears to be corrupted both when going upstream and when going > downstream somewhere inside the stack used by the riak python client on > windows 7 64 bit. > > One more observation: I've done some byte

Re: Corrupted data using Riak Python Client on Win7 64 bit

2013-11-09 Thread finkle mcgraw
hine. Ergo: Data appears to be corrupted both when going upstream and when going downstream somewhere inside the stack used by the riak python client on windows 7 64 bit. One more observation: I've done some byte for byte comparisons when uploading/downloading, and the error rate appears to

Re: Corrupted data using Riak Python Client on Win7 64 bit

2013-11-08 Thread John Daily
the exact same content. I've only done >> brief analysis of how the corruptions appear within the files that are >> detected as corrupted, but it looks like it's typically between 1 to 5 bytes >> that are altered, evenly distributed within the file. >> >&g

Re: Corrupted data using Riak Python Client on Win7 64 bit

2013-11-08 Thread John Daily
has the exact > same length as the source, but not the exact same content. I've only done > brief analysis of how the corruptions appear within the files that are > detected as corrupted, but it looks like it's typically between 1 to 5 bytes > that are altered, evenly distributed w

Re: Corrupted data using Riak Python Client on Win7 64 bit

2013-11-08 Thread Engel Sanchez
cally between 1 to 5 > bytes that are altered, evenly distributed within the file. > > I get no exceptions or warnings from the Riak Python client. Everything > appears to be in order. > > So far I've tested this on two different windows machines against two > different Ri

Corrupted data using Riak Python Client on Win7 64 bit

2013-11-08 Thread finkle mcgraw
ptions or warnings from the Riak Python client. Everything appears to be in order. So far I've tested this on two different windows machines against two different Riak clusters (a five node Amazon cluster with a loadbalancer in front, and a local devcluster running inside an Ubuntu 12.04 Vi

Re: Timeout problems, Riak Python Client with protocol buffers

2013-11-05 Thread Brian Roach
On Tue, Nov 5, 2013 at 1:20 PM, finkle mcgraw wrote: > There's a load balancer between the server running the Riak Python Client > and the actual Riak nodes. Perhaps this socket error is related to some > configuration of that load balancer? That's what it looks like. Normall

Re: Timeout problems, Riak Python Client with protocol buffers

2013-11-05 Thread finkle mcgraw
Hi Hector, Thank you for your reply. Here is the "stats" view from our Riak dev-cluster: https://gist.github.com/anonymous/7324713 The riak version (core) is 1.4.2. The server running the Riak Python Client is based on some kind of AWS AMI. The whole 5-node-devcluster was set up us

Re: Timeout problems, Riak Python Client with protocol buffers

2013-11-04 Thread Hector Castro
nment? What version of Riak are you running against? -- Hector On Sat, Nov 2, 2013 at 12:36 PM, finkle mcgraw wrote: > Hi, > > I've been having a lot of problems with the Riak Python Client when using > protocol buffers. The problem seems to be related to some kind of socket >

Timeout problems, Riak Python Client with protocol buffers

2013-11-02 Thread finkle mcgraw
Hi, I've been having a lot of problems with the Riak Python Client when using protocol buffers. The problem seems to be related to some kind of socket timeout because it only happens if a particular instance of a riak client object has not been used for more than 60 seconds. I describ

Re: Yokozuna: Riak Python client PB error with Solr stored boolean fields

2013-10-15 Thread Ryan Zezeski
Dave, This is a bug in Yokozuna. I have a hot-patch you can try. I'll email you directly with an attachment. I created an issue as well. https://github.com/basho/yokozuna/issues/209 -Z On Mon, Oct 14, 2013 at 9:27 PM, Dave Martorana wrote: > I studied the problem I was having with using

Yokozuna: Riak Python client PB error with Solr stored boolean fields

2013-10-14 Thread Dave Martorana
I studied the problem I was having with using the Python client's .fulltext_search(...) method and got it down to this - it seems that I get an error when searching against Solr using the Python client's .fulltext_search(...) method (using protocol buffers) whenever I have a * stored* boolean field

[ANN] Riak Python Client v2.0.0

2013-07-30 Thread Sean Cribbs
Hey Riak users and enthusiasts, We're thrilled to announce the release of the official Riak Python Client, version 2.0.0. It is immediately available on PyPi [1] and Github [2]. This release is the culmination of many months of redesigning, refactoring, fixing bugs and adding features. We

Re: [ANN] riak-python-client 1.5.2

2013-02-01 Thread Sean Cribbs
Hi Matt, The changes I mentioned were mostly part of https://github.com/basho/riak-python-client/pull/179. The description will tell you most of what is in there, but here's the shorter version: * The client connects to multiple nodes automatically. Each node carries a decaying error rat

Re: riak-python-client http timeout?

2013-01-31 Thread Mark Phillips
ot in place yet. I'll dig around tonight to see if there's an open issue for it. Mark On Wed, Jan 2, 2013 at 12:36 PM, Michael Johnson wrote: > I am trying to figure out how to set the timeout for riak-python-client for > http connections. I'm not great with python,

[ANN] riak-python-client 1.5.2

2013-01-31 Thread Sean Cribbs
Hey riak-users, I've just tagged and released version 1.5.2 of the Python client to PyPi. This should likely be the last release of the 1.5.x series. It includes some bugfixes and HTTPS support. Release notes: https://github.com/basho/riak-python-client/blob/1.5.2/RELEASE_NOTES.md#152-

riak-python-client http timeout?

2013-01-02 Thread Michael Johnson
I am trying to figure out how to set the timeout for riak-python-client for http connections. I'm not great with python, but from that I can tell, it's not possible with the current incarnation of riak-python-client. It seems to be defaulting to 60 seconds, but I would like to set that

Problem with running TestServer in riak-python-client

2012-12-17 Thread Anton
I am using the latest github checkouts for both riak and the python client. Up until the .prepare() part everything seems to be working fine. However, the moment I call .start() the process enters an infinite loop in wait_for_erlang_prompt(). It appears that there is constantly newline output comi

Riak crashes when used via TestServer from riak-python-client

2012-12-13 Thread Louis Opter
.org/pastes/5518654/text I'm using a fresh install of Riak 1.2.1 on Ubuntu 10.04 (using the official package from Basho), and the git version of riak-python-client in a clean virtualenv. But I had similar outcomes with Riak 1.1.1 and riak-python-client 1.5.1 (with this fix: https://github.co

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 compati

Riak Python Client release 1.5.0

2012-08-29 Thread Sean Cribbs
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 using Riak 1.2, this is an important upgrade. Our apologies for the delay on this re

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 >

Riak Python client connection pooling using gevent

2012-08-09 Thread Parnell Springmeyer
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 current riak-python-client to use gevent's queue to do thread-safe and light-weight Riak connection pooling. There is a ve

Re: Problem installing Riak Python client

2011-11-10 Thread Greg Stein
On Nov 10, 2011 4:26 PM, "Nate Lawson" wrote: > > > On Nov 10, 2011, at 4:04 PM, Greg Stein wrote: > > > On Thu, Nov 10, 2011 at 11:51, Nate Lawson wrote: > >> ... > >> BTW, are there any plans for the Riak python client to use the protobuf

Re: Problem installing Riak Python client

2011-11-10 Thread Nate Lawson
On Nov 10, 2011, at 4:04 PM, Greg Stein wrote: > On Thu, Nov 10, 2011 at 11:51, Nate Lawson wrote: >> ... >> BTW, are there any plans for the Riak python client to use the protobuf C >> library directly via ctypes? The pure python implementation of protobuf >> se

Re: Problem installing Riak Python client

2011-11-10 Thread Greg Stein
On Thu, Nov 10, 2011 at 11:51, Nate Lawson wrote: >... > BTW, are there any plans for the Riak python client to use the protobuf C > library directly via ctypes? The pure python implementation of protobuf seems > a little slow. Not that I've seen. I plan to use the HTTP interf

Re: Problem installing Riak Python client

2011-11-10 Thread Nate Lawson
the same problem. > The problem is that the latest version of Protobuf (2.4.1) has moved setup.py > from /setup.py to /python/setup.py. > There is already an issue raised for Riak: > https://github.com/basho/riak-python-client/issues/19. > Any suggestions how to specify correct pat

Problem installing Riak Python client

2011-11-10 Thread Nitish Sharma
buf (2.4.1) has moved setup.py from /setup.py to /python/setup.py. There is already an issue raised for Riak: https://github.com/basho/riak-python-client/issues/19. Any suggestions how to specify correct path of setup.py to Pip? Cheers Nitish ___ riak-use

Riak Python Client Adding Links Key Issues

2011-10-05 Thread idmartin
e to them, as you can see. Not sure whats going on. Has anyone else run into this? -- View this message in context: http://riak-users.197444.n3.nabble.com/Riak-Python-Client-Adding-Links-Key-Issues-tp3398347p3398347.html Sent from the Riak Users mailing list archive at Nabble.com.

[ANN] Riak Python Client 1.2.2

2011-06-24 Thread Mathias Meyer
ps://github.com/basho/riak-python-client [2] https://github.com/basho/riak-python-client/blob/riak-python-client-1.2.2/README.rst [3] https://github.com/basho/riak-python-client/blob/riak-python-client-1.2.2/RELEASE_NOTES.md Mathias Meyer Developer Advocate, Bas

RFC: riak-python-client: Added a class for constructing key filters

2011-06-08 Thread Eric Moritz
/riak-python-client/pull/29#issuecomment-1325131 ___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com

Re: pagination with riak-python-client

2011-01-08 Thread Alexander Sicular
Forgot to mention that your offsets would have to be passed to the slice via the args option in the m/r. -Alexander Sicular @siculars On Jan 8, 2011, at 12:47 PM, Lenley Woodard wrote: > Does the Riak python client support pagination in the reduce phase? > If not, is there a way to imp

Re: pagination with riak-python-client

2011-01-08 Thread Alexander Sicular
, 2011, at 12:47 PM, Lenley Woodard wrote: > Does the Riak python client support pagination in the reduce phase? > If not, is there a way to implement it? > > -- > J. Lenley Woodard > Kotoko Group, LLC > Kotoko.com > ___ &

pagination with riak-python-client

2011-01-08 Thread Lenley Woodard
Does the Riak python client support pagination in the reduce phase? If not, is there a way to implement it? -- J. Lenley Woodard Kotoko Group, LLC Kotoko.com ___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman