sjain
unread,Jan 18, 2012, 5:34:49 PM1/18/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to project-voldemort
Using the following API:
Iterator<ByteArray> keyIterator =
adminClient.fetchKeys(nodeid,
"storename",
partitionIdList,
null,
false);
I expect to get an iterator of all keys in the store across all nodes/
partitions in my cluster. However, it's clear that i'm not actually
getting all the results I expect. Using a StoreClient, i'm able to
fetch the object for a key which does not show up in the above key
iterator.
Am I using the API correctly? If so, any suggestions on how I can
debug this? If not, what's a better way to do this?
sjain