@Override
public void getProperties(Map<String,String> props, PropertyFilter filter) {
parent.getProperties(props, filter);
ZooCache zc = getTablePropCache();
List<String> children = zc.getChildren(ZooUtil.getRoot(instanceId) + Constants.ZTABLES + "/" + table + Constants.ZTABLE_CONF);
if (children != null) {
for (String child : children) {
if (child != null && filter.accept(child)) {
String value = get(zc, child);
if (value != null)