.caching(CFMetaData.Caching.fromString(getPropertyString(CFPropDefs.KW_CACHING, CFMetaData.DEFAULT_CACHING_STRATEGY.toString())))
.bloomFilterFpChance(getPropertyDouble(CFPropDefs.KW_BF_FP_CHANCE, CFMetaData.DEFAULT_BF_FP_CHANCE));
// CQL2 can have null keyAliases
if (keyAlias != null)
newCFMD.keyAliases(Collections.<ByteBuffer>singletonList(keyAlias));
}
catch (ConfigurationException e)
{
throw new InvalidRequestException(e.toString());
}