You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you share the versions of Python and the Aerospike Python client you are using? Also if you have the backtrace from the core dump, that would be useful.
scan.select is expecting a variable number of string arguments, and not a set of keyword arguments, so specifying them as scan.select('PK', 'merchantInKey') is the way to go.
I have the following code, which is running fine for one aerospike set but throwing following error for
Error -
Segmentation fault (core dumped)
Specifying fields like following, instead of
**columnNames
in the above example works -scan.select('PK','merchantInKey')
Stackoverflow link https://stackoverflow.com/questions/51599240/getting-segmentation-fault-on-aerospike-client-scan-foreach-after-select
The text was updated successfully, but these errors were encountered: