Hi All,
I am new to Aerospike and really want to try it as it’s said SSD friendly. However, I still have some questions and want to get help here. Thanks.
-
Does Aerospike support snapshot? If so, the snapshot operation should be light-weighted, but not a heavy one, right? However, the answer might be no as I can’t find anything about snapshot…
-
There are some limits shown on page FAQ. It said that one Aerospile cluster only supports 32 namespace and 1023 sets per namespace. Is that right. So what can I do if I have really large number of tables(sets)?
Thanks for any comments/replies,
Zhenhua
-
No snapshotting.
-
Custom log-structured file system on raw SSD.
-
Just namespace > sets. No 3rd level. Sets are just a way to group records and form part of the key when you’re getting a record (namespace + set + keyname). If you have more than 1023 sets then you can use one of the bins of the record to hold a value for the group/table name and query via secondary index or you can use LDTs to store large lists of multiple values under 1 key.
Read the architecture documentation, especially this page: http://www.aerospike.com/docs/architecture/data-model.html
1 Like
Got it. Thank you very much for your reply.