I have a simple two node cluster.
One the set contains info data and has only one row. In the aql command I see this SET on only one node, while missing on the other node. In the output info_meta is present on only one node. while other two sets are replicated to both nodes.
aql> show sets
+------------------+-----------+----------------+---------+-------------------+---------------+-------------------+----------+------------+
| disable-eviction | ns | set-enable-xdr | objects | stop-writes-count | set | memory_data_bytes | deleting | tombstones |
+------------------+-----------+----------------+---------+-------------------+---------------+-------------------+----------+------------+
| "false" | "DATAA" | "use-default" | 14 | 0 | "LOCALE" | 0 | "false" | 0 |
| "false" | "CACHE" | "use-default" | 172 | 0 | "names" | 0 | "false" | 0 |
+------------------+-----------+----------------+---------+-------------------+---------------+-------------------+----------+------------+
2 rows in set (0.000 secs)
+------------------+-----------+----------------+---------+-------------------+---------------+-------------------+----------+------------+
| disable-eviction | ns | set-enable-xdr | objects | stop-writes-count | set | memory_data_bytes | deleting | tombstones |
+------------------+-----------+----------------+---------+-------------------+---------------+-------------------+----------+------------+
| "false" | "DATAA" | "use-default" | 18 | 0 | "LOCALE" | 0 | "false" | 0 |
| "false" | "CACHE" | "use-default" | 1 | 0 | "**info_meta**" | 0 | "false" | 0 |
| "false" | "CACHE" | "use-default" | 172 | 0 | "names" | 0 | "false" | 0 |
+------------------+-----------+----------------+---------+-------------------+---------------+-------------------+----------+------------+
namespace DATAA {
replication-factor 2
high-water-memory-pct 70
high-water-disk-pct 90
stop-writes-pct 95
# this memory is allocated for index memory
memory-size 20G
default-ttl 0
storage-engine device {
file /cacheDir/aerospike/qa_test.dat # Location of data file on server.
filesize 10G # Max size of each file in GiB.
}
}
namespace CACHE {
replication-factor 2
high-water-memory-pct 70
high-water-disk-pct 90
stop-writes-pct 95
# this memory is allocated for index memory
memory-size 20G
default-ttl 0
storage-engine device {
device /dev/sdc
write-block-size 1M
defrag-lwm-pct 70
defrag-startup-minimum 10
}
}