Hi, i have some doubts… In this moment i have 3 servers with the same features. I have the replication factor in 2 ( i underestand that this mean that have two replicas, the server and the replica) i wanna to have 3 replicas but when i made this change the server don´t start… this is my configuration:
**> # Aerospike database configuration file.
This stanza must come first.
service { user root group root paxos-single-replica-limit 1 # Number of nodes where the replica count is automatically reduced to 1. pidfile /var/run/aerospike/asd.pid service-threads 4 transaction-queues 4 transaction-threads-per-queue 4 proto-fd-max 15000 paxos-protocol v4 } logging { # Log file must be an absolute path. file /var/log/aerospike/aerospike.log { context any info } } network { service { address any port 3000 } heartbeat { mode mesh address 10.99.0.12 port 3002 mesh-seed-address-port 10.99.0.11 3002 mesh-seed-address-port 10.99.0.10 3002 interval 150 timeout 20 # To use unicast-mesh heartbeats, comment out the 3 lines above and # use the following 4 lines instead.
mode mesh
port 3002
mesh-address 10.1.1.1
mesh-port 3002
interval 150 timeout 10 } fabric { port 3001 } info { port 3003 }
} #namespace test {
replication-factor 2
memory-size 4G
default-ttl 30d # 30 days, use 0 to never expire/evict.
storage-engine memory
#} namespace databases { replication-factor 2 memory-size 4G default-ttl 30d # 30 days, use 0 to never expire/evict. storage-engine memory # To use file storage backing, comment out the line above and use the # following lines instead. storage-engine device { file /opt/aerospike/data/databases.dat filesize 1G data-in-memory true # Store data in memory in addition to file. } } cluster { mode dynamic self-group-id 201 }**