I would like to delete old versions from a table on a daily basis and am thinking to implement:
1) Run a map/reduce (similar to RowCounter) and for each rowid, execute a deleteall(rowed, timestamp) 2) Similar to (1), but with a scanner. I could also write a filter to filter retrieve only rowids that have data older then timestamp. Before I start writing code, I would like to know if there is an existing process to delete old data? Thanks -Yair
