aerospike-client-python icon indicating copy to clipboard operation
aerospike-client-python copied to clipboard

Aerospike Python Client

Results 184 aerospike-client-python issues
Sort by recently updated
recently updated
newest added

def get_records(record): print(record) query = client.query(NAMESPACE, SETNAME) query.foreach(callback) Traceback (most recent call last): File "", line 1, in exception.InvalidRequest: (4, 'AEROSPIKE_ERR_REQUEST_INVALID', 'src/main/aerospike/aerospike_query.c', 356, False) Note: I have added load balancer...

I have the following code, which is running fine for one aerospike set but throwing following error for ``` import aerospike import sys,traceback import redis import time import json import...

I am running Python in a debian based system and when I do `import aerospike` I get error `undefined symbol: sk_pop_free` Followed procedure which is given at http://www.aerospike.com/docs/client/python/install ```` Python...

during connection on unreliable network this sigsegv occures (Python 3.5.2, client 2.0.6): ``` #0 strlen () at ../sysdeps/x86_64/strlen.S:106 #1 0x0000000000548ec9 in PyUnicode_FromString () at ../Objects/unicodeobject.c:1884 #2 0x00007fabba86605e in raise_exception (err=err@entry=0x7ffe8527e0f0)...

``` $ pypy main.py Traceback (most recent call last): File "main.py", line 2, in import aerospike File "/Users/food/Applications/pypy-2.6.1/site-packages/aerospike-1.0.53-py2.7-macosx-10.9-x86_64.egg/aerospike.py", line 7, in __bootstrap__() File "/Users/food/Applications/pypy-2.6.1/site-packages/aerospike-1.0.53-py2.7-macosx-10.9-x86_64.egg/aerospike.py", line 6, in __bootstrap__ imp.load_dynamic(__name__,__file__) ImportError:...

question

Other client library wrappers like Node.js & C has update API for LList. It would be good to add this in next release.

I am using Aerospike 3.7.3 and python client 2.0.1 Tested under single as-well-as 2 node cluster. Appending items to CDT (List) where each item it 1KB. Appending items till the...

We had tested our code against version 1.0.49 and pinned the version in our requirements file. We found that this version was removed from pypi because our builds were failing....

Hi, in forked server everything works nice when using shm. Everything except query. Immediately after query call (`query.results()`) the process is stuck. This happens also with `query.foreach()` simple example: https://gist.github.com/tivvit/7e7448742a8b017326dd

Greetings, We're performing a very basic scan (using `foreach`) over a large data set. Hitting CTRL-C does nothing once the scan has started. Is there a way to interrupt a...