I'd like to run an efficient table get() methods and retrieve about a 1000 rows where each row includes about 4 columns (around 20 bytes per cell) with several versions per column. I assume the longest wait is for reading the row from the disk so I could parallelize these reads. Any suggestions what would be the best method?
1) How many gets() should I be running in parallel? 2) What's the best number of get() per region? 3) Should the row ids be randomized among the different regions? Etc Thanks -Yair
