The BatchDeleter pulls all data through the client, so it does not scale. If this is a problem for you, then other options to be aware of are
* Write a Filter or RowFilter and compact the table. These filters will run on the server side in parallel when you compact the table. * Write map reduce job that reads table and writes out deletes. On Sun, May 4, 2014 at 7:51 PM, Marko Escriba <[email protected]>wrote: > Hi All, > > Yes! createBatchDeleter is the best option for me. Thank a lot for the > guidance guys. :D. > > > > -- > View this message in context: > http://apache-accumulo.1065345.n5.nabble.com/Remove-Row-Data-tp9573p9612.html > Sent from the Developers mailing list archive at Nabble.com. >
