Hello. Currently we have 2 nodes cluster. Is it possible to do like this
One one node:
namespace ns1 {
replication-factor 2
}
namespace ns2 {
replication-factor 1;
}
On the second
namespace ns1 {
replication-factor 2
}
namespace ns3 {
replication-factor 1;
}
In the community version of aerospike. I mean we want to have 1 replicated namespace, and 1 namespace on each node without replication, ns2 and ns3 - we don’t need to replicate and the data inside this ns should not spread across the nodes.
is it possible ?