On 30 June 2014 16:02, Alessandro Pisa <alessandro.p...@gmail.com> wrote: > On 30 June 2014 15:42, Jim Fulton <j...@zope.com> wrote: >> On Mon, Jun 30, 2014 at 8:24 AM, Alessandro Pisa >> >> I suggest using the file-store iterator to look at the transaction >> timestamps. >>
This is what I got [root@zeoserver]# cat scripts/test_tids.py from ZODB.FileStorage import FileIterator it = FileIterator('var/filestorage/Data.fs') print 'Size %s' % it._file_size last = None counter = 0 for t in it: if last is not None: if t.tid <= last: import pdb; pdb.set_trace() print 'wtf', repr(t.tid) counter += 1 last = t.tid print 'Last transaction: %s-%s' % (t._tpos, t._tend) print 'Transactions: %s' % counter [root@zeoserver]# ./bin/zopepy scripts/test_tids.py Size 67395884639 Last transaction: 67392229872-67395884631 Transactions: 1275366 It seems that tids are in order :/ -- http://alepisa.blogspot.com Esalando Prassi _______________________________________________ For more information about ZODB, see http://zodb.org/ ZODB-Dev mailing list - ZODB-Dev@zope.org https://mail.zope.org/mailman/listinfo/zodb-dev