Hi, we are connected to multiple clusters and we used shm_key set by hand.
We tried to not set shm_key which by the documentation should be implicitly evaluated per unique hostname but we ended up with a connection to only one cluster. http://www.aerospike.com/apidocs/python/aerospike.html
The problem is that in version 2.0.13 use_shared_connection
was added and when it is not set to True
shm_key is not evaluated correctly.
My proposal is to do one of these changes:
- Mention this in the client documentation (IMHO it also deserves a changelog mention)
- set
use_shared_connection
to True when using shm, or is there another use case?
There are probably other solutions, I am willing to discuss them and help with the solution.