I am using Aerospike 3.7.3 and python client 2.x
I have two node cluster each node consuming 100G of data. Due to some issue, I have stopped one node and started with cold-start-empty=true.
First issue is, it took around 9 hours to complete the migration. Is it usual to take 9 hours?
Getting following error occationally (30% of the time) while connecting to cluster during migration. (While Starting one of the node in cluster)
aerospike_config = { 'hosts': [ ('212.16.290.10', 3000), ('212.16.290.11', 3000),], 'policies': { 'timeout': 10, # milliseconds 'key': aerospike.POLICY_KEY_SEND } }
exception.ClientError: (-1L, 'Failed to seed cluster', 'src/main/aerospike/as_cluster.c', 417)client = aerospike.client(aerospike_config).connect()
Kindly help.