How to find out how much disk space does a Set take up in Aerospike? -
the closest found using info command of asmonitor tool goes granular disk usage of namespace. possibly using aerospike java client cool, too.
you can number of records in set using asinfo:
asinfo -v sets -l
you need know avg record size in set.
otherwise, have write udf , scan aggregation (but far understand, still rough approximation there no easy way know how used internally through udf reading bins of record).
Comments
Post a Comment