-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Partition map empty error from Aerospike on vm #400
Comments
Is the namespace you are using for the key defined in your config file? Can you insert the same record via AQL? |
aerospike.conf.zip |
Usually this happens when the client cannot connect to the server node and update the partition table. The easiest way to find out what's happening is to enable DEBUG logging in the client: import asl "github.com/aerospike/aerospike-client-go/v6/logger"
...
asl.Logger.SetLevel(asl.DEBUG) |
So this is an enterprise edition? Can you help me reproduce this? I need your setup steps to see if I can repro the issue. |
Yes this is an enterprise edition. Following steps will be helpful to reproduce the issue.
|
what does the command |
I am having Aerospike v6.2.0.8 running on my virtual machine having OS RHEL 7.x. and using go client v6. I am able to successfully make connection with DB but when I am trying to fetch or insert records using Get() or Put() function, I am getting error as 'Partition map empty'.
However when I am running same version of Aerospike on docker, I am able to fetch and insert the records using the same code. Below is a snippet of sample code I am using to make connection and query the data:
The text was updated successfully, but these errors were encountered: