You just need to remove the Versioning iterator that is put on the table by default:
$ ./bin/accumulo shell --fake Enter current password for 'ecn'@'mock-instance': Shell - Apache Accumulo Interactive Shell - - version: 1.4.3-SNAPSHOT - instance name: mock-instance - instance id: mock-instance-id - - type 'help' for a list of available commands - ecn@mock-instance> createtable test ecn@mock-instance test> deleteiter -scan -majc -minc -n vers ecn@mock-instance test> insert a b c d ecn@mock-instance test> insert a b c e ecn@mock-instance test> insert a b c f ecn@mock-instance test> scan -st a b:c [] 1350581608126 f a b:c [] 1350581607086 e a b:c [] 1350581605986 d ecn@mock-instance test> On Thu, Oct 18, 2012 at 1:25 PM, Sami Omer <[email protected]> wrote: > Hello everyone, > > > > Is there a way to programmatically iterate through the different version of > a cell (cells that have identical row id, column family, and column > qualifier but different timestamps) in Accumulo 1.3.6? > > > > I was looking over the documentation and saw that those settings can be > applied per table through the command line, but is it doable via the API? > > > > Thank you.
